<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Solving the Fizzbuzz Puzzle with Ruby</title>
	<atom:link href="http://innovativethought.net/2007/04/08/solving-the-fizzbuzz-puzzle-with-ruby/feed/" rel="self" type="application/rss+xml" />
	<link>http://innovativethought.net/2007/04/08/solving-the-fizzbuzz-puzzle-with-ruby/</link>
	<description>think. code. design. innovate.</description>
	<lastBuildDate>Mon, 05 Mar 2012 20:06:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Tim</title>
		<link>http://innovativethought.net/2007/04/08/solving-the-fizzbuzz-puzzle-with-ruby/#comment-90</link>
		<dc:creator><![CDATA[Tim]]></dc:creator>
		<pubDate>Sun, 02 Nov 2008 20:41:54 +0000</pubDate>
		<guid isPermaLink="false">http://innovativethought.wordpress.com/2007/04/09/solving-the-fizzbuzz-puzzle-with-ruby/#comment-90</guid>
		<description><![CDATA[Well, the post was from a year and a half ago, so at the time I wasn&#039;t really familiar with upto, but you&#039;re right... and this point if I was to write this it would look something like:

1.upto(100) do &#124;x&#124;
  fb = []
  fb &lt;&lt; &quot;Fizz&quot; if (x % 3) == 0
  fb &lt;&lt; &quot;Buzz&quot; if (x % 5) == 0
  fb &lt;&lt; x if (x % 3) != 0 and (x % 5) != 0
  puts (fb.join &quot;&quot;)
end]]></description>
		<content:encoded><![CDATA[<p>Well, the post was from a year and a half ago, so at the time I wasn&#8217;t really familiar with upto, but you&#8217;re right&#8230; and this point if I was to write this it would look something like:</p>
<p>1.upto(100) do |x|<br />
  fb = []<br />
  fb &lt;&lt; &#8220;Fizz&#8221; if (x % 3) == 0<br />
  fb &lt;&lt; &#8220;Buzz&#8221; if (x % 5) == 0<br />
  fb &lt;&lt; x if (x % 3) != 0 and (x % 5) != 0<br />
  puts (fb.join &#8220;&#8221;)<br />
end</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: S2K</title>
		<link>http://innovativethought.net/2007/04/08/solving-the-fizzbuzz-puzzle-with-ruby/#comment-89</link>
		<dc:creator><![CDATA[S2K]]></dc:creator>
		<pubDate>Sun, 02 Nov 2008 20:28:09 +0000</pubDate>
		<guid isPermaLink="false">http://innovativethought.wordpress.com/2007/04/09/solving-the-fizzbuzz-puzzle-with-ruby/#comment-89</guid>
		<description><![CDATA[Why not 1.upto(100)???]]></description>
		<content:encoded><![CDATA[<p>Why not 1.upto(100)???</p>
]]></content:encoded>
	</item>
</channel>
</rss>

