<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Indentation-sensitive Erlang 2</title>
	<atom:link href="http://ulf.wiger.net/weblog/2008/03/20/indentation-sensitive-erlang-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://ulf.wiger.net/weblog/2008/03/20/indentation-sensitive-erlang-2/</link>
	<description>CTO Erlang Solutions Ltd - @uwiger - ulf.wiger (at) erlang-solutions.com</description>
	<lastBuildDate>Sat, 24 Jul 2010 20:42:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Orlando</title>
		<link>http://ulf.wiger.net/weblog/2008/03/20/indentation-sensitive-erlang-2/comment-page-1/#comment-7329</link>
		<dc:creator>Orlando</dc:creator>
		<pubDate>Mon, 08 Sep 2008 05:16:36 +0000</pubDate>
		<guid isPermaLink="false">http://ulf.wiger.net/weblog/2008/03/20/indentation-sensitive-erlang-2/#comment-7329</guid>
		<description>Hi! I&#039;ve been working through Pragmatic Erlang and it&#039;s a very interesting language. One of the things I don&#039;t like too much is the dots and semicolons and commas, thought. I&#039;ve also programmed a little in Python because I&#039;m learning Django, and I always heard that significant indentation was a bad idea, but I&#039;ve found that it works surprisingly well. It reduces a lot of noise and typing, and it&#039;s not at all confusing because the indentation is relative and it has no problem recognizing a TAB or a single space even in a single file.

So I was just wondering if Erlang could be made indentation sensitive. I&#039;m happy to know that someone&#039;s working on it!</description>
		<content:encoded><![CDATA[<p>Hi! I&#8217;ve been working through Pragmatic Erlang and it&#8217;s a very interesting language. One of the things I don&#8217;t like too much is the dots and semicolons and commas, thought. I&#8217;ve also programmed a little in Python because I&#8217;m learning Django, and I always heard that significant indentation was a bad idea, but I&#8217;ve found that it works surprisingly well. It reduces a lot of noise and typing, and it&#8217;s not at all confusing because the indentation is relative and it has no problem recognizing a TAB or a single space even in a single file.</p>
<p>So I was just wondering if Erlang could be made indentation sensitive. I&#8217;m happy to know that someone&#8217;s working on it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ulf Wiger</title>
		<link>http://ulf.wiger.net/weblog/2008/03/20/indentation-sensitive-erlang-2/comment-page-1/#comment-3305</link>
		<dc:creator>Ulf Wiger</dc:creator>
		<pubDate>Sat, 05 Apr 2008 06:47:53 +0000</pubDate>
		<guid isPermaLink="false">http://ulf.wiger.net/weblog/2008/03/20/indentation-sensitive-erlang-2/#comment-3305</guid>
		<description>Peter - how about simply disallowing TABs in the indentation-sensitive scanner?

The way this hack works, you have to explicitly tell the compiler that the code is indentation-sensitive, at which point it switches to another token scanner.

The only indentation-sensitive language I&#039;ve done any half-serious work in was FORTRAN, so I&#039;m not crusading to get this introduced into Erlang - I&#039;m mainly playing around because I was curious to see how it would work out.</description>
		<content:encoded><![CDATA[<p>Peter &#8211; how about simply disallowing TABs in the indentation-sensitive scanner?</p>
<p>The way this hack works, you have to explicitly tell the compiler that the code is indentation-sensitive, at which point it switches to another token scanner.</p>
<p>The only indentation-sensitive language I&#8217;ve done any half-serious work in was FORTRAN, so I&#8217;m not crusading to get this introduced into Erlang &#8211; I&#8217;m mainly playing around because I was curious to see how it would work out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Krnjevic</title>
		<link>http://ulf.wiger.net/weblog/2008/03/20/indentation-sensitive-erlang-2/comment-page-1/#comment-3296</link>
		<dc:creator>Peter Krnjevic</dc:creator>
		<pubDate>Fri, 04 Apr 2008 18:27:38 +0000</pubDate>
		<guid isPermaLink="false">http://ulf.wiger.net/weblog/2008/03/20/indentation-sensitive-erlang-2/#comment-3296</guid>
		<description>Oh, no! Not another language with indentation requirements, please!

Having paid my dues with columns in FORTRAN and my hatred for indentation in Python, an otherwise superb language, please resist the temptation to make Erlang column sensitive.

With so many editors and IDEs disagreeing over tab settings, it&#039;s only a matter of time before my code gets mixed up.</description>
		<content:encoded><![CDATA[<p>Oh, no! Not another language with indentation requirements, please!</p>
<p>Having paid my dues with columns in FORTRAN and my hatred for indentation in Python, an otherwise superb language, please resist the temptation to make Erlang column sensitive.</p>
<p>With so many editors and IDEs disagreeing over tab settings, it&#8217;s only a matter of time before my code gets mixed up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ulf Wiger</title>
		<link>http://ulf.wiger.net/weblog/2008/03/20/indentation-sensitive-erlang-2/comment-page-1/#comment-3089</link>
		<dc:creator>Ulf Wiger</dc:creator>
		<pubDate>Mon, 24 Mar 2008 09:54:57 +0000</pubDate>
		<guid isPermaLink="false">http://ulf.wiger.net/weblog/2008/03/20/indentation-sensitive-erlang-2/#comment-3089</guid>
		<description>Oh, thanks... I guess. (:

The purpose of the test module is of course not to illustrate how beautiful it can be, but rather to verify that the parser does its job correctly, including parsing &quot;old-style&quot; functions, like test(). But I agree: I think that there is no loss of understanding - only less noise.</description>
		<content:encoded><![CDATA[<p>Oh, thanks&#8230; I guess. (:</p>
<p>The purpose of the test module is of course not to illustrate how beautiful it can be, but rather to verify that the parser does its job correctly, including parsing &#8220;old-style&#8221; functions, like test(). But I agree: I think that there is no loss of understanding &#8211; only less noise.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://ulf.wiger.net/weblog/2008/03/20/indentation-sensitive-erlang-2/comment-page-1/#comment-3074</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Sat, 22 Mar 2008 18:32:29 +0000</pubDate>
		<guid isPermaLink="false">http://ulf.wiger.net/weblog/2008/03/20/indentation-sensitive-erlang-2/#comment-3074</guid>
		<description>Just an erlang beginner here, but that code is &#039;beautiful&#039;.  =)</description>
		<content:encoded><![CDATA[<p>Just an erlang beginner here, but that code is &#8216;beautiful&#8217;.  =)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
