<?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: Algebra of Programming: Chapter 1 Section 2</title>
	<atom:link href="http://johnbender.us/2009/09/12/algebra-of-programming-chapter-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://johnbender.us/2009/09/12/algebra-of-programming-chapter-1/</link>
	<description></description>
	<lastBuildDate>Sun, 01 Apr 2012 20:37:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: John Bender</title>
		<link>http://johnbender.us/2009/09/12/algebra-of-programming-chapter-1/comment-page-1/#comment-31056</link>
		<dc:creator>John Bender</dc:creator>
		<pubDate>Fri, 08 Jul 2011 05:30:27 +0000</pubDate>
		<guid isPermaLink="false">http://nickelcode.com/?p=522#comment-31056</guid>
		<description>DCWhatthe,

Long time waiting for this reply but its not possible to purchase the eBook. Though there are places on the internet you can download it from ;)</description>
		<content:encoded><![CDATA[<p>DCWhatthe,</p>
<p>Long time waiting for this reply but its not possible to purchase the eBook. Though there are places on the internet you can download it from ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DCWhatthe</title>
		<link>http://johnbender.us/2009/09/12/algebra-of-programming-chapter-1/comment-page-1/#comment-28225</link>
		<dc:creator>DCWhatthe</dc:creator>
		<pubDate>Sun, 17 Apr 2011 23:32:24 +0000</pubDate>
		<guid isPermaLink="false">http://nickelcode.com/?p=522#comment-28225</guid>
		<description>Is it possible to purchase a PDF or other ebook version of Algebra of Programming?</description>
		<content:encoded><![CDATA[<p>Is it possible to purchase a PDF or other ebook version of Algebra of Programming?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oscar</title>
		<link>http://johnbender.us/2009/09/12/algebra-of-programming-chapter-1/comment-page-1/#comment-9926</link>
		<dc:creator>Oscar</dc:creator>
		<pubDate>Tue, 03 Nov 2009 20:07:30 +0000</pubDate>
		<guid isPermaLink="false">http://nickelcode.com/?p=522#comment-9926</guid>
		<description>awesome - but i&#039;m still a little confused by foldn:

what&#039;s is its type definition?

also which compiler are (were) you using? it doesn&#039;t seem to be built into HUGS

also i recomend bird if you get stuck, and hutton if you get stuck with him...</description>
		<content:encoded><![CDATA[<p>awesome &#8211; but i&#8217;m still a little confused by foldn:</p>
<p>what&#8217;s is its type definition?</p>
<p>also which compiler are (were) you using? it doesn&#8217;t seem to be built into HUGS</p>
<p>also i recomend bird if you get stuck, and hutton if you get stuck with him&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CL</title>
		<link>http://johnbender.us/2009/09/12/algebra-of-programming-chapter-1/comment-page-1/#comment-9086</link>
		<dc:creator>CL</dc:creator>
		<pubDate>Mon, 05 Oct 2009 18:48:53 +0000</pubDate>
		<guid isPermaLink="false">http://nickelcode.com/?p=522#comment-9086</guid>
		<description>In order to figure out the squares, first consider: id n = foldn Zero Successor n. Which we can rewrite as: id n = foldn 0 (1 ) n. In order to square a number we want to have n copies of n, so for each of the n many (1 ) in n, we use (n ) instead:

square n = foldn Zero (plus n) n</description>
		<content:encoded><![CDATA[<p>In order to figure out the squares, first consider: id n = foldn Zero Successor n. Which we can rewrite as: id n = foldn 0 (1 ) n. In order to square a number we want to have n copies of n, so for each of the n many (1 ) in n, we use (n ) instead:</p>
<p>square n = foldn Zero (plus n) n</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Bender</title>
		<link>http://johnbender.us/2009/09/12/algebra-of-programming-chapter-1/comment-page-1/#comment-8273</link>
		<dc:creator>John Bender</dc:creator>
		<pubDate>Sun, 13 Sep 2009 23:48:57 +0000</pubDate>
		<guid isPermaLink="false">http://nickelcode.com/?p=522#comment-8273</guid>
		<description>@wren

The solution provided, see the link above in the article, involved using a selection function composed with foldn and required something more complex than your own solution.

thank you though for the insight.</description>
		<content:encoded><![CDATA[<p>@wren</p>
<p>The solution provided, see the link above in the article, involved using a selection function composed with foldn and required something more complex than your own solution.</p>
<p>thank you though for the insight.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wren ng thornton</title>
		<link>http://johnbender.us/2009/09/12/algebra-of-programming-chapter-1/comment-page-1/#comment-8270</link>
		<dc:creator>wren ng thornton</dc:creator>
		<pubDate>Sun, 13 Sep 2009 22:32:46 +0000</pubDate>
		<guid isPermaLink="false">http://nickelcode.com/?p=522#comment-8270</guid>
		<description>In order to figure out the squares, first consider: id n = foldn Zero Successor n. Which we can rewrite as: id n = foldn 0 (1 ) n. In order to square a number we want to have n copies of n, so for each of the n many (1 ) in n, we use (n ) instead:

square n = foldn Zero (plus n) n</description>
		<content:encoded><![CDATA[<p>In order to figure out the squares, first consider: id n = foldn Zero Successor n. Which we can rewrite as: id n = foldn 0 (1 ) n. In order to square a number we want to have n copies of n, so for each of the n many (1 ) in n, we use (n ) instead:</p>
<p>square n = foldn Zero (plus n) n</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Bender</title>
		<link>http://johnbender.us/2009/09/12/algebra-of-programming-chapter-1/comment-page-1/#comment-8259</link>
		<dc:creator>John Bender</dc:creator>
		<pubDate>Sun, 13 Sep 2009 16:02:41 +0000</pubDate>
		<guid isPermaLink="false">http://nickelcode.com/?p=522#comment-8259</guid>
		<description>@Sean

I think if you order from the third party merchant on the site, its printed for you. There are no more copies in circulation.</description>
		<content:encoded><![CDATA[<p>@Sean</p>
<p>I think if you order from the third party merchant on the site, its printed for you. There are no more copies in circulation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://johnbender.us/2009/09/12/algebra-of-programming-chapter-1/comment-page-1/#comment-8254</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Sun, 13 Sep 2009 14:38:37 +0000</pubDate>
		<guid isPermaLink="false">http://nickelcode.com/?p=522#comment-8254</guid>
		<description>How did you do the order the print-on-demand copy?</description>
		<content:encoded><![CDATA[<p>How did you do the order the print-on-demand copy?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

