<?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: Ruby &#8211; A Lightning Tutorial</title>
	<atom:link href="http://ethilien.net/ruby-a-lightning-tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://ethilien.net</link>
	<description>I need to redo this site...</description>
	<lastBuildDate>Wed, 09 Jun 2010 04:30:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Arun</title>
		<link>http://ethilien.net/ruby-a-lightning-tutorial/comment-page-1/#comment-34553</link>
		<dc:creator>Arun</dc:creator>
		<pubDate>Tue, 23 Feb 2010 09:47:43 +0000</pubDate>
		<guid isPermaLink="false">http://ethilien.net/ruby-a-lightening-tutorial/#comment-34553</guid>
		<description>&lt;p&gt;Good Tutorial :). Add more notes&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Good Tutorial <img src='http://ethilien.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Add more notes</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Pietro</title>
		<link>http://ethilien.net/ruby-a-lightning-tutorial/comment-page-1/#comment-21514</link>
		<dc:creator>Pietro</dc:creator>
		<pubDate>Sun, 05 Apr 2009 09:53:46 +0000</pubDate>
		<guid isPermaLink="false">http://ethilien.net/ruby-a-lightening-tutorial/#comment-21514</guid>
		<description>&lt;p&gt;The code &lt;/p&gt;

&lt;p&gt;def my_method(name, action)
    yield(name, action)
end&lt;/p&gt;

&lt;p&gt;my_method(&#039;Bob&#039;) { &#124;name, action&#124; puts &quot;#{name} is doing #{action}&quot; }&lt;/p&gt;

&lt;p&gt;is not correct since my&lt;em&gt;method needs 2 arguments like my&lt;/em&gt;method(&#039;Bob&#039;, &#039;smoking&#039;).&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>The code </p>

<p>def my_method(name, action)
    yield(name, action)
end</p>

<p>my_method(&#8216;Bob&#8217;) { |name, action| puts &#8220;#{name} is doing #{action}&#8221; }</p>

<p>is not correct since my<em>method needs 2 arguments like my</em>method(&#8216;Bob&#8217;, &#8217;smoking&#8217;).</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Connor</title>
		<link>http://ethilien.net/ruby-a-lightning-tutorial/comment-page-1/#comment-11174</link>
		<dc:creator>Connor</dc:creator>
		<pubDate>Sun, 25 May 2008 21:49:54 +0000</pubDate>
		<guid isPermaLink="false">http://ethilien.net/ruby-a-lightening-tutorial/#comment-11174</guid>
		<description>&lt;p&gt;Thanks for the corrections Fingal and QBass!&lt;/p&gt;

&lt;p&gt;@Fingal, I hadn&#039;t thought much about that, I suppose most languages deal more with public/private attributes rather than accessors. Objective-C however is an exception in that it works almost exactly like Ruby. I should add some explanation about them.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for the corrections Fingal and QBass!</p>

<p>@Fingal, I hadn&#8217;t thought much about that, I suppose most languages deal more with public/private attributes rather than accessors. Objective-C however is an exception in that it works almost exactly like Ruby. I should add some explanation about them.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: QBass</title>
		<link>http://ethilien.net/ruby-a-lightning-tutorial/comment-page-1/#comment-11166</link>
		<dc:creator>QBass</dc:creator>
		<pubDate>Sun, 25 May 2008 00:36:25 +0000</pubDate>
		<guid isPermaLink="false">http://ethilien.net/ruby-a-lightening-tutorial/#comment-11166</guid>
		<description>&lt;blockquote&gt;
  &lt;p&gt;Variables in Ruby do not need to be declared, they leap into existence the first time they are used.
  This should probably read :
  Variables in Ruby do not need to be declared, they leap into existence the first time they are assigned a value.
  A variable that is first &#039;used&#039; on the RHS doesn&#039;t leap into existence. :-P&lt;/p&gt;
&lt;/blockquote&gt;
</description>
		<content:encoded><![CDATA[<blockquote>
  <p>Variables in Ruby do not need to be declared, they leap into existence the first time they are used.
  This should probably read :
  Variables in Ruby do not need to be declared, they leap into existence the first time they are assigned a value.
  A variable that is first &#8216;used&#8217; on the RHS doesn&#8217;t leap into existence. <img src='http://ethilien.net/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
</blockquote>]]></content:encoded>
	</item>
	<item>
		<title>By: Fingal</title>
		<link>http://ethilien.net/ruby-a-lightning-tutorial/comment-page-1/#comment-10836</link>
		<dc:creator>Fingal</dc:creator>
		<pubDate>Fri, 25 Apr 2008 22:01:28 +0000</pubDate>
		<guid isPermaLink="false">http://ethilien.net/ruby-a-lightening-tutorial/#comment-10836</guid>
		<description>&lt;p&gt;Attribute readers, writers, and accessors may not have meaning for those who first encounter them in the &quot;Scopes and Variables&quot; section above.&lt;/p&gt;

&lt;p&gt;What to do about this, if anything, depends, of course, on the intended audience, but if it&#039;s ruby newbies, ....&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Attribute readers, writers, and accessors may not have meaning for those who first encounter them in the &#8220;Scopes and Variables&#8221; section above.</p>

<p>What to do about this, if anything, depends, of course, on the intended audience, but if it&#8217;s ruby newbies, &#8230;.</p>]]></content:encoded>
	</item>
</channel>
</rss>
