<?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: Understanding the Clojure -&gt; macro</title>
	<atom:link href="http://blog.fogus.me/2009/09/04/understanding-the-clojure-macro/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.fogus.me/2009/09/04/understanding-the-clojure-macro/</link>
	<description>λ λ λ</description>
	<lastBuildDate>Sun, 29 Jan 2012 10:17:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: mindbender1</title>
		<link>http://blog.fogus.me/2009/09/04/understanding-the-clojure-macro/comment-page-1/#comment-39609</link>
		<dc:creator>mindbender1</dc:creator>
		<pubDate>Sun, 13 Nov 2011 09:49:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fogus.me/?p=1967#comment-39609</guid>
		<description>&lt;p&gt;http://en.wikibooks.org/wiki/Clojure_Programming/Examples/API_Examples/Macros&lt;/p&gt;

&lt;p&gt;helps further with examples.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p><a href="http://en.wikibooks.org/wiki/Clojure_Programming/Examples/API_Examples/Macros" rel="nofollow">http://en.wikibooks.org/wiki/Clojure_Programming/Examples/API_Examples/Macros</a></p>

<p>helps further with examples.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Woody Smith</title>
		<link>http://blog.fogus.me/2009/09/04/understanding-the-clojure-macro/comment-page-1/#comment-36346</link>
		<dc:creator>Woody Smith</dc:creator>
		<pubDate>Wed, 07 Sep 2011 00:27:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fogus.me/?p=1967#comment-36346</guid>
		<description>&lt;p&gt;Understanding Clojure API is useful for each function/ macro. Some macros can be explained with just one line of code and I was thinking if this was the process threads. But I guess some API is missing on examples for each function/macro.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Understanding Clojure API is useful for each function/ macro. Some macros can be explained with just one line of code and I was thinking if this was the process threads. But I guess some API is missing on examples for each function/macro.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Anderson De Andrade</title>
		<link>http://blog.fogus.me/2009/09/04/understanding-the-clojure-macro/comment-page-1/#comment-34892</link>
		<dc:creator>Anderson De Andrade</dc:creator>
		<pubDate>Tue, 09 Aug 2011 01:28:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fogus.me/?p=1967#comment-34892</guid>
		<description>&lt;p&gt;Clojure API is missing examples for each function/macro.&lt;/p&gt;

&lt;p&gt;Some macros can be explained with just one line of code instead of juicy paragraphs. &quot;Threads the expr through the forms&quot;: I was thinking of processing threads.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Clojure API is missing examples for each function/macro.</p>

<p>Some macros can be explained with just one line of code instead of juicy paragraphs. &#8220;Threads the expr through the forms&#8221;: I was thinking of processing threads.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: fogus</title>
		<link>http://blog.fogus.me/2009/09/04/understanding-the-clojure-macro/comment-page-1/#comment-10399</link>
		<dc:creator>fogus</dc:creator>
		<pubDate>Sun, 06 Sep 2009 00:54:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fogus.me/?p=1967#comment-10399</guid>
		<description>&lt;p&gt;@Hugo @Andera&lt;/p&gt;

&lt;p&gt;D&#039;oh!  Serves me right for not re-REPLing the problem after changing it during the course of the modifications.  :(&lt;/p&gt;

&lt;p&gt;Thanks for the comments.
-m&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>@Hugo @Andera</p>

<p>D&#8217;oh!  Serves me right for not re-REPLing the problem after changing it during the course of the modifications.  :(</p>

<p>Thanks for the comments.
-m</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Craig Andera</title>
		<link>http://blog.fogus.me/2009/09/04/understanding-the-clojure-macro/comment-page-1/#comment-10393</link>
		<dc:creator>Craig Andera</dc:creator>
		<pubDate>Sat, 05 Sep 2009 15:51:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fogus.me/?p=1967#comment-10393</guid>
		<description>&lt;p&gt;(-&gt; (/ 144 12) (* ,,, 4 (/ 2 3)) str keyword (list ,,, :33))&lt;/p&gt;

&lt;p&gt;evaluates to&lt;/p&gt;

&lt;p&gt;(:32 :33)&lt;/p&gt;

&lt;p&gt;for me. :)&lt;/p&gt;

&lt;p&gt;But thanks for the explanation. I&#039;d be a bit more direct than you were (you very diplomatic, I thought) and state that the doc string for -&gt; sucks. You should submit a patch to it.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>(-&gt; (/ 144 12) (* ,,, 4 (/ 2 3)) str keyword (list ,,, :33))</p>

<p>evaluates to</p>

<p>(:32 :33)</p>

<p>for me. :)</p>

<p>But thanks for the explanation. I&#8217;d be a bit more direct than you were (you very diplomatic, I thought) and state that the doc string for -&gt; sucks. You should submit a patch to it.</p>]]></content:encoded>
	</item>
</channel>
</rss>

