<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"
	>
<channel>
	<title>Comments on: What is a functional programming language?</title>
	<atom:link href="http://enfranchisedmind.com/blog/posts/what-is-a-functional-programming-language/feed/" rel="self" type="application/rss+xml" />
	<link>http://enfranchisedmind.com/blog/posts/what-is-a-functional-programming-language/</link>
	<description>programming, politics, &#38; other religious issues</description>
	<lastBuildDate>Wed, 08 Feb 2012 14:16:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Brian Hurt</title>
		<link>http://enfranchisedmind.com/blog/posts/what-is-a-functional-programming-language/#comment-38131</link>
		<dc:creator>Brian Hurt</dc:creator>
		<pubDate>Fri, 25 Feb 2011 20:31:40 +0000</pubDate>
		<guid isPermaLink="false">http://enfranchisedmind.com/blog/?p=1408#comment-38131</guid>
		<description>Sorry for the delay in responding.  Anyways, zero is just (fun s -&gt; (fun z -&gt; z)).</description>
		<content:encoded><![CDATA[<p>Sorry for the delay in responding.  Anyways, zero is just (fun s -&gt; (fun z -&gt; z)).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://enfranchisedmind.com/blog/posts/what-is-a-functional-programming-language/#comment-38106</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Fri, 14 Jan 2011 06:22:27 +0000</pubDate>
		<guid isPermaLink="false">http://enfranchisedmind.com/blog/?p=1408#comment-38106</guid>
		<description>Great post! Certainly cleared up quite a few concepts for me; I haven&#039;t delved deep into functional languages.

One question though. I&#039;m not sure I understood how integers are represented. Your example takes 1 and basically represents it as &quot;the successor of zero&quot;, which is a pretty natural thing to say considering how the set of integers can be constructed, but my question is, how do you then define/represent zero?

This has me stumped - maybe the answer is obvious but I can&#039;t see it.

Cheers.</description>
		<content:encoded><![CDATA[<p>Great post! Certainly cleared up quite a few concepts for me; I haven&#8217;t delved deep into functional languages.</p>
<p>One question though. I&#8217;m not sure I understood how integers are represented. Your example takes 1 and basically represents it as &#8220;the successor of zero&#8221;, which is a pretty natural thing to say considering how the set of integers can be constructed, but my question is, how do you then define/represent zero?</p>
<p>This has me stumped &#8211; maybe the answer is obvious but I can&#8217;t see it.</p>
<p>Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stuff i'd like to share with developers/programmers - Digit Technology Discussion Forum - Tech Discussion Forums in India</title>
		<link>http://enfranchisedmind.com/blog/posts/what-is-a-functional-programming-language/#comment-38101</link>
		<dc:creator>Stuff i'd like to share with developers/programmers - Digit Technology Discussion Forum - Tech Discussion Forums in India</dc:creator>
		<pubDate>Thu, 06 Jan 2011 19:47:22 +0000</pubDate>
		<guid isPermaLink="false">http://enfranchisedmind.com/blog/?p=1408#comment-38101</guid>
		<description>[...]  1&gt; How to Write a Spelling Corrector 2&gt; User Experience for Developers &#124; UX Magazine 3&gt; What is a functional programming language? 4&gt; Category:OWASP Top Ten Project - OWASP  others r more than welcome to share yours       [...]</description>
		<content:encoded><![CDATA[<p>[...]  1&gt; How to Write a Spelling Corrector 2&gt; User Experience for Developers | UX Magazine 3&gt; What is a functional programming language? 4&gt; Category:OWASP Top Ten Project &#8211; OWASP  others r more than welcome to share yours       [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Hat</title>
		<link>http://enfranchisedmind.com/blog/posts/what-is-a-functional-programming-language/#comment-38097</link>
		<dc:creator>Mike Hat</dc:creator>
		<pubDate>Mon, 27 Dec 2010 00:50:55 +0000</pubDate>
		<guid isPermaLink="false">http://enfranchisedmind.com/blog/?p=1408#comment-38097</guid>
		<description>Does anyone think that we will soon see computing architectures that natively support functional &quot;definitions&quot; of what we want done?

Won&#039;t MHz yield to M-core when we finally get beyond the current crop of simplistic CPUs? Math will return to it&#039;s rightful place atop the pyramid of knowledge and the way we express it.</description>
		<content:encoded><![CDATA[<p>Does anyone think that we will soon see computing architectures that natively support functional &#8220;definitions&#8221; of what we want done?</p>
<p>Won&#8217;t MHz yield to M-core when we finally get beyond the current crop of simplistic CPUs? Math will return to it&#8217;s rightful place atop the pyramid of knowledge and the way we express it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bo</title>
		<link>http://enfranchisedmind.com/blog/posts/what-is-a-functional-programming-language/#comment-38087</link>
		<dc:creator>Bo</dc:creator>
		<pubDate>Fri, 24 Dec 2010 13:36:43 +0000</pubDate>
		<guid isPermaLink="false">http://enfranchisedmind.com/blog/?p=1408#comment-38087</guid>
		<description>Function application is left-associative. 

Therefore (f x y z) means (((f x) y) z).

 Therefore your church numeral are *all wrong*.

 For example, three is not (... s s s z) but (... s (s (s z))).</description>
		<content:encoded><![CDATA[<p>Function application is left-associative. </p>
<p>Therefore (f x y z) means (((f x) y) z).</p>
<p> Therefore your church numeral are *all wrong*.</p>
<p> For example, three is not (&#8230; s s s z) but (&#8230; s (s (s z))).</p>
]]></content:encoded>
	</item>
</channel>
</rss>

