<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Haskell n00b &#8211; value/type constructors confusion</title>
	<atom:link href="http://twoguysarguing.wordpress.com/2009/03/06/haskell-n00b-valuetype-constructors-confusion/feed/" rel="self" type="application/rss+xml" />
	<link>http://twoguysarguing.wordpress.com/2009/03/06/haskell-n00b-valuetype-constructors-confusion/</link>
	<description>colorful back and forth from two highly opinionated programmers</description>
	<lastBuildDate>Fri, 17 May 2013 10:05:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: starting in the box &#171; Two Guys Arguing</title>
		<link>http://twoguysarguing.wordpress.com/2009/03/06/haskell-n00b-valuetype-constructors-confusion/#comment-46</link>
		<dc:creator><![CDATA[starting in the box &#171; Two Guys Arguing]]></dc:creator>
		<pubDate>Wed, 20 May 2009 00:52:19 +0000</pubDate>
		<guid isPermaLink="false">http://twoguysarguing.wordpress.com/?p=48#comment-46</guid>
		<description><![CDATA[[...] the year, and at that same time a group of very bright gentlemen that I work with had resolved to learn Haskell. Following along, I dove into the Haskell community a bit and became very impressed with the things [...]]]></description>
		<content:encoded><![CDATA[<p>[...] the year, and at that same time a group of very bright gentlemen that I work with had resolved to learn Haskell. Following along, I dove into the Haskell community a bit and became very impressed with the things [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: benjaminplee</title>
		<link>http://twoguysarguing.wordpress.com/2009/03/06/haskell-n00b-valuetype-constructors-confusion/#comment-15</link>
		<dc:creator><![CDATA[benjaminplee]]></dc:creator>
		<pubDate>Sun, 08 Mar 2009 17:12:32 +0000</pubDate>
		<guid isPermaLink="false">http://twoguysarguing.wordpress.com/?p=48#comment-15</guid>
		<description><![CDATA[Thanks for pointing that out.  You&#039;re right.  As soon as I read your comment I realized what I had done.  While I was writing the post I was coding something up in Ruby and started getting my names confused.]]></description>
		<content:encoded><![CDATA[<p>Thanks for pointing that out.  You&#8217;re right.  As soon as I read your comment I realized what I had done.  While I was writing the post I was coding something up in Ruby and started getting my names confused.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: benjaminplee</title>
		<link>http://twoguysarguing.wordpress.com/2009/03/06/haskell-n00b-valuetype-constructors-confusion/#comment-14</link>
		<dc:creator><![CDATA[benjaminplee]]></dc:creator>
		<pubDate>Sun, 08 Mar 2009 17:10:15 +0000</pubDate>
		<guid isPermaLink="false">http://twoguysarguing.wordpress.com/?p=48#comment-14</guid>
		<description><![CDATA[Thanks for the tips/resources.  Its always nice to hear about someone else who is going through the same process.  Good luck with your progress.]]></description>
		<content:encoded><![CDATA[<p>Thanks for the tips/resources.  Its always nice to hear about someone else who is going through the same process.  Good luck with your progress.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://twoguysarguing.wordpress.com/2009/03/06/haskell-n00b-valuetype-constructors-confusion/#comment-13</link>
		<dc:creator><![CDATA[Jeff]]></dc:creator>
		<pubDate>Sun, 08 Mar 2009 04:33:59 +0000</pubDate>
		<guid isPermaLink="false">http://twoguysarguing.wordpress.com/?p=48#comment-13</guid>
		<description><![CDATA[A minor note - the built-in type you&#039;re converting to and from isn&#039;t an array, it&#039;s a list too. In fact, its implementation is pretty much identical to your &#039;List&#039; type, except it spells &quot;List a&quot; as &quot;[a]&quot;, &quot;Cons&quot; as &quot;:&quot;, and &quot;Nil&quot; as &quot;[]&quot;.]]></description>
		<content:encoded><![CDATA[<p>A minor note &#8211; the built-in type you&#8217;re converting to and from isn&#8217;t an array, it&#8217;s a list too. In fact, its implementation is pretty much identical to your &#8216;List&#8217; type, except it spells &#8220;List a&#8221; as &#8220;[a]&#8220;, &#8220;Cons&#8221; as &#8220;:&#8221;, and &#8220;Nil&#8221; as &#8220;[]&#8220;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: izaak</title>
		<link>http://twoguysarguing.wordpress.com/2009/03/06/haskell-n00b-valuetype-constructors-confusion/#comment-11</link>
		<dc:creator><![CDATA[izaak]]></dc:creator>
		<pubDate>Sun, 08 Mar 2009 03:07:27 +0000</pubDate>
		<guid isPermaLink="false">http://twoguysarguing.wordpress.com/?p=48#comment-11</guid>
		<description><![CDATA[I&#039;ve been going through the (online) book as well very slowly (i have the book as well, but i find some of the comments in the online version very helpful). Wondering how you found the Graham scan questions? 

Apparently the irc channel is very helpful (I have yet to go there), but i&#039;ve been finding http://www.haskell.org/hoogle/ to be quite helpful when I diverge from the questions.

So far that (chapter 3) is the one i&#039;ve gotten the most out of - the exercises seem to be less thought out in in the next couple (i&#039;m only up to ch7, and it&#039;s going very slowly).]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve been going through the (online) book as well very slowly (i have the book as well, but i find some of the comments in the online version very helpful). Wondering how you found the Graham scan questions? </p>
<p>Apparently the irc channel is very helpful (I have yet to go there), but i&#8217;ve been finding <a href="http://www.haskell.org/hoogle/" rel="nofollow">http://www.haskell.org/hoogle/</a> to be quite helpful when I diverge from the questions.</p>
<p>So far that (chapter 3) is the one i&#8217;ve gotten the most out of &#8211; the exercises seem to be less thought out in in the next couple (i&#8217;m only up to ch7, and it&#8217;s going very slowly).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
