<?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: Learning Scheme</title>
	<atom:link href="http://blog.cpu.eti.br/2008/12/14/learning-scheme/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cpu.eti.br/2008/12/14/learning-scheme/</link>
	<description></description>
	<lastBuildDate>Tue, 06 Jul 2010 12:43:16 -0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Eduardo Habkost</title>
		<link>http://blog.cpu.eti.br/2008/12/14/learning-scheme/comment-page-1/#comment-54320</link>
		<dc:creator>Eduardo Habkost</dc:creator>
		<pubDate>Mon, 15 Dec 2008 13:33:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cpu.eti.br/?p=108#comment-54320</guid>
		<description>Your solution actually has a point: it does tail recursion and won&#039;t abuse the function-call stack, like the simpler solution probably will.</description>
		<content:encoded><![CDATA[<p>Your solution actually has a point: it does tail recursion and won&#8217;t abuse the function-call stack, like the simpler solution probably will.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tabgal</title>
		<link>http://blog.cpu.eti.br/2008/12/14/learning-scheme/comment-page-1/#comment-54313</link>
		<dc:creator>Tabgal</dc:creator>
		<pubDate>Mon, 15 Dec 2008 11:53:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cpu.eti.br/?p=108#comment-54313</guid>
		<description>Em Haskell ficou (também não sou especialista :P)

len :: [a] -&gt; Int
len [] = 0
len (x:ys) = 1 + len ys</description>
		<content:encoded><![CDATA[<p>Em Haskell ficou (também não sou especialista :P)</p>
<p>len :: [a] -&gt; Int<br />
len [] = 0<br />
len (x:ys) = 1 + len ys</p>
]]></content:encoded>
	</item>
</channel>
</rss>

