<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>Comments for page &quot;Code Generation &amp; Visual Smog in Code (part I)&quot;</title>
		<link>http://250bpm.com/blog:37/comments/show</link>
		<description></description>
				<copyright></copyright>
		<lastBuildDate>Sat, 01 Aug 2015 21:41:55 +0000</lastBuildDate>
		
					<item>
				<guid>http://250bpm.com/blog:37/comments/show#post-2020395</guid>
				<title>(no title)</title>
				<link>http://250bpm.com/blog:37/comments/show#post-2020395</link>
				<description></description>
				<pubDate>Sun, 27 Apr 2014 05:57:08 +0000</pubDate>
				<wikidot:authorName>martin_sustrik</wikidot:authorName>				<wikidot:authorUserId>939</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I was actually considering to use Lua as a control language. It seemed pretty fitting. However, in the end I've looked at the populatity chart of different languages and picked the one from the top. Python turned out to be out of question due to its syntax and Ruby was the next one in the list.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://250bpm.com/blog:37/comments/show#post-2020249</guid>
				<title>(no title)</title>
				<link>http://250bpm.com/blog:37/comments/show#post-2020249</link>
				<description></description>
				<pubDate>Sat, 26 Apr 2014 22:22:50 +0000</pubDate>
				<wikidot:authorName>Sean Conner</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>You might want to look at Lua. One feature it has is that you can specify literal strings several ways.</p> <p>1)</p> <div class="code"> <pre> <code>&quot;this is a\ntwo line 'string' with double quotes&quot;</code> </pre></div> <p>2)</p> <div class="code"> <pre> <code>'this is a\ntwo line &quot;string&quot; with single quotes'</code> </pre></div> <p>3)</p> <div class="code"> <pre> <code>[[this is a three line string, but the normal escapes sequences aren't interpreted what you see is literally what you get]]</code> </pre></div> <p>That last form can actually be embedded, because the actual delimiter is &quot;[&quot; &quot;=&quot;* &quot;[&quot; and &quot;]&quot; &quot;=&quot;* &quot;]&quot;, where the number of equal signs are equal (if that makes sense). Perhaps an example of the code fragment in section 4 will be helpful:</p> <div class="code"> <pre> <code>print [=[print [[print &quot;Hello, world&quot;]]]=]</code> </pre></div> <p>(The <tt>print()</tt> function in Lua automatically adds the newline).</p> <p>Just a thought.</p> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>