<?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: Making a readeable code, more and more readeable</title>
	<atom:link href="http://blog.lucastex.com/2009/04/14/making-a-readeable-code-more-and-more-readeable/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.lucastex.com/2009/04/14/making-a-readeable-code-more-and-more-readeable/</link>
	<description></description>
	<lastBuildDate>Fri, 16 Jul 2010 02:35:11 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Paulo Suzart</title>
		<link>http://blog.lucastex.com/2009/04/14/making-a-readeable-code-more-and-more-readeable/comment-page-1/#comment-157</link>
		<dc:creator>Paulo Suzart</dc:creator>
		<pubDate>Wed, 15 Apr 2009 14:47:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lucastex.com/?p=351#comment-157</guid>
		<description>Going further, given a Erlang record:
-record(contact, {name,age,phone,email,dateCreation}).

C = #contact{
name=&quot;Lucas&quot;,
age=24,
phone=&quot;9999999999&quot;,
email=&quot;lucastext@gmail.com&quot;,
dateCreation=date()}.

Its simple too, isnÂ´t it?
;)</description>
		<content:encoded><![CDATA[<p>Going further, given a Erlang record:<br />
-record(contact, {name,age,phone,email,dateCreation}).</p>
<p>C = #contact{<br />
name=&#8221;Lucas&#8221;,<br />
age=24,<br />
phone=&#8221;9999999999&#8243;,<br />
email=&#8221;lucastext@gmail.com&#8221;,<br />
dateCreation=date()}.</p>
<p>Its simple too, isnÂ´t it?<br />
 <img src='http://blog.lucastex.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paulo Suzart</title>
		<link>http://blog.lucastex.com/2009/04/14/making-a-readeable-code-more-and-more-readeable/comment-page-1/#comment-156</link>
		<dc:creator>Paulo Suzart</dc:creator>
		<pubDate>Wed, 15 Apr 2009 13:22:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lucastex.com/?p=351#comment-156</guid>
		<description>You can do it in Java too.
Contact c = new Contact() {{
	name = &quot;Lucas&quot;;
	age = 24;
	phone = &quot;9999999999&quot;;
	email = &quot;lucastex@gmail.com&quot;;
	dateCreated = new Date();
	}};

Or enve in Scala:
val c = new Contact() { 
     name = &quot;Paulo&quot;
     age = 26
     email = &quot;paulosuzart@gmail.com&quot;
     phone = &quot;99999999999&quot;
     dateCreated = new Date()
     }

Groovy is nice like others.
;)</description>
		<content:encoded><![CDATA[<p>You can do it in Java too.<br />
Contact c = new Contact() {{<br />
	name = &#8220;Lucas&#8221;;<br />
	age = 24;<br />
	phone = &#8220;9999999999&#8243;;<br />
	email = &#8220;lucastex@gmail.com&#8221;;<br />
	dateCreated = new Date();<br />
	}};</p>
<p>Or enve in Scala:<br />
val c = new Contact() {<br />
     name = &#8220;Paulo&#8221;<br />
     age = 26<br />
     email = &#8220;paulosuzart@gmail.com&#8221;<br />
     phone = &#8220;99999999999&#8243;<br />
     dateCreated = new Date()<br />
     }</p>
<p>Groovy is nice like others.<br />
 <img src='http://blog.lucastex.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lucastex</title>
		<link>http://blog.lucastex.com/2009/04/14/making-a-readeable-code-more-and-more-readeable/comment-page-1/#comment-155</link>
		<dc:creator>lucastex</dc:creator>
		<pubDate>Wed, 15 Apr 2009 10:09:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lucastex.com/?p=351#comment-155</guid>
		<description>@Tim

Hello Tim!!! Thanks for visiting! That&#039;s true... The named parameters is either great! 

Thanks for commenting about!</description>
		<content:encoded><![CDATA[<p>@Tim</p>
<p>Hello Tim!!! Thanks for visiting! That&#8217;s true&#8230; The named parameters is either great! </p>
<p>Thanks for commenting about!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Yates</title>
		<link>http://blog.lucastex.com/2009/04/14/making-a-readeable-code-more-and-more-readeable/comment-page-1/#comment-154</link>
		<dc:creator>Tim Yates</dc:creator>
		<pubDate>Wed, 15 Apr 2009 06:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lucastex.com/?p=351#comment-154</guid>
		<description>You forgot:

def c = new Contact( name:  &quot;Lucas&quot;,
                     age:   24
                     email: &quot;lucastex@gmail.com&quot;
                     phone: &quot;55 11 9999.9999&quot;
                     dateCreated: new Date() )</description>
		<content:encoded><![CDATA[<p>You forgot:</p>
<p>def c = new Contact( name:  &#8220;Lucas&#8221;,<br />
                     age:   24<br />
                     email: &#8220;lucastex@gmail.com&#8221;<br />
                     phone: &#8220;55 11 9999.9999&#8243;<br />
                     dateCreated: new Date() )</p>
]]></content:encoded>
	</item>
</channel>
</rss>
