<?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"
	>
<channel>
	<title>Comments on: SICP section 2.2.2</title>
	<atom:link href="http://eli.thegreenplace.net/2007/08/10/sicp-section-222/feed/" rel="self" type="application/rss+xml" />
	<link>http://eli.thegreenplace.net/2007/08/10/sicp-section-222/</link>
	<description>Eli Bendersky's personal website</description>
	<pubDate>Fri, 21 Nov 2008 18:24:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: rinat</title>
		<link>http://eli.thegreenplace.net/2007/08/10/sicp-section-222/#comment-76075</link>
		<dc:creator>rinat</dc:creator>
		<pubDate>Fri, 05 Oct 2007 18:30:26 +0000</pubDate>
		<guid isPermaLink="false">http://eli.thegreenplace.net/2007/08/10/sicp-section-222/#comment-76075</guid>
		<description>&lt;code&gt;
(define (deep-reverse lst)
  (cond ((null? lst) ())
        ((not (pair? lst)) lst)
        (else (append (deep-reverse (cdr lst))
                      (list (deep-reverse (car lst)))))))
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p><code><br />
(define (deep-reverse lst)<br />
  (cond ((null? lst) ())<br />
        ((not (pair? lst)) lst)<br />
        (else (append (deep-reverse (cdr lst))<br />
                      (list (deep-reverse (car lst)))))))<br />
</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>
