<?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: How has Ruby blown my mind?</title>
	<atom:link href="http://rubylearning.com/blog/2007/02/05/how-has-ruby-blown-my-mind/feed/" rel="self" type="application/rss+xml" />
	<link>http://rubylearning.com/blog/2007/02/05/how-has-ruby-blown-my-mind/</link>
	<description>Helping Ruby Programmers become Awesome</description>
	<lastBuildDate>Wed, 08 Feb 2012 15:25:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Mike Harris</title>
		<link>http://rubylearning.com/blog/2007/02/05/how-has-ruby-blown-my-mind/comment-page-1/#comment-29</link>
		<dc:creator>Mike Harris</dc:creator>
		<pubDate>Tue, 06 Feb 2007 14:36:55 +0000</pubDate>
		<guid isPermaLink="false">http://rubylearning.com/blog/2007/02/05/how-has-ruby-blown-my-mind/#comment-29</guid>
		<description>Ruby makes programming fun.  Gld to have you on board.

Small detail: Blocks really are method parameters.  The block structure

[1,2,3].each  { &#124;x&#124; puts x }

is just syntactic sugar for this

func = lambda { &#124;x&#124; puts x }
[1,2,3].each(&amp;func)</description>
		<content:encoded><![CDATA[<p>Ruby makes programming fun.  Gld to have you on board.</p>
<p>Small detail: Blocks really are method parameters.  The block structure</p>
<p>[1,2,3].each  { |x| puts x }</p>
<p>is just syntactic sugar for this</p>
<p>func = lambda { |x| puts x }<br />
[1,2,3].each(&amp;func)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

