<?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: FizzBuzz the Functional Way</title>
	<atom:link href="http://thevalerios.net/matt/2008/06/fizzbuzz-the-functional-way/feed/" rel="self" type="application/rss+xml" />
	<link>http://thevalerios.net/matt/2008/06/fizzbuzz-the-functional-way/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 13 Jan 2010 16:31:08 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: matt</title>
		<link>http://thevalerios.net/matt/2008/06/fizzbuzz-the-functional-way/comment-page-1/#comment-6303</link>
		<dc:creator>matt</dc:creator>
		<pubDate>Thu, 05 Feb 2009 05:39:14 +0000</pubDate>
		<guid isPermaLink="false">http://thevalerios.net/matt/2008/06/fizzbuzz-the-functional-way/#comment-6303</guid>
		<description>Touche, Jim. Thanks :)</description>
		<content:encoded><![CDATA[<p>Touche, Jim. Thanks <img src='http://thevalerios.net/matt/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jim</title>
		<link>http://thevalerios.net/matt/2008/06/fizzbuzz-the-functional-way/comment-page-1/#comment-6272</link>
		<dc:creator>jim</dc:creator>
		<pubDate>Wed, 04 Feb 2009 07:15:45 +0000</pubDate>
		<guid isPermaLink="false">http://thevalerios.net/matt/2008/06/fizzbuzz-the-functional-way/#comment-6272</guid>
		<description>&lt;em&gt;Anyone worth their salt should be able to crank out a solution in a couple minutes.  &lt;/em&gt;

Hmmm. Your FizzBuzz has an off-by-1 error.

 for (int i = 0; i &lt; 100; i++)

should be:

 for (int i = 1; i &lt;= 100; i++)</description>
		<content:encoded><![CDATA[<p><em>Anyone worth their salt should be able to crank out a solution in a couple minutes.  </em></p>
<p>Hmmm. Your FizzBuzz has an off-by-1 error.</p>
<p> for (int i = 0; i &lt; 100; i++)</p>
<p>should be:</p>
<p> for (int i = 1; i &lt;= 100; i++)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
