<?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: On Lisp -&gt; Clojure (Chapter 3)</title>
	<atom:link href="http://blog.fogus.me/2008/09/30/on-lisp-clojure-chapter-3/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.fogus.me/2008/09/30/on-lisp-clojure-chapter-3/</link>
	<description>λ λ λ</description>
	<lastBuildDate>Sat, 04 Sep 2010 01:31:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Brian</title>
		<link>http://blog.fogus.me/2008/09/30/on-lisp-clojure-chapter-3/comment-page-1/#comment-12650</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Fri, 04 Dec 2009 18:49:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.earthvssoup.com/?p=926#comment-12650</guid>
		<description>&lt;p&gt;A version of good-reverse that does not grow stack and works on seq.&lt;/p&gt;

&lt;p&gt;(defn good-reverse [lst]
  (loop [l lst, acc nil]
    (if (seq l)
      (recur (rest l) (cons (first l) acc))
      acc)))&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>A version of good-reverse that does not grow stack and works on seq.</p>

<p>(defn good-reverse [lst]
  (loop [l lst, acc nil]
    (if (seq l)
      (recur (rest l) (cons (first l) acc))
      acc)))</p>]]></content:encoded>
	</item>
</channel>
</rss>
