<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog &#187; haskell</title>
	<atom:link href="http://www.adamcrume.com/blog/archive/tag/haskell/feed" rel="self" type="application/rss+xml" />
	<link>http://www.adamcrume.com/blog</link>
	<description></description>
	<lastBuildDate>Thu, 12 Jan 2012 15:54:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Adventures in Haskell &#8211; Error handling</title>
		<link>http://www.adamcrume.com/blog/archive/2010/07/18/adventures-in-haskell-error-handling</link>
		<comments>http://www.adamcrume.com/blog/archive/2010/07/18/adventures-in-haskell-error-handling#comments</comments>
		<pubDate>Sun, 18 Jul 2010 21:20:29 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[error handling]]></category>
		<category><![CDATA[error monad]]></category>
		<category><![CDATA[haskell]]></category>

		<guid isPermaLink="false">http://www.adamcrume.com/blog/?p=145</guid>
		<description><![CDATA[I fell in love with Haskell almost the day I started using it.  It&#8217;s not perfect, though, and one of its weaker areas is error/exception handling.  I&#8217;m not going to cover all ways to return errors.  For more details, see 8 ways to report errors in Haskell.
Haskell has an Exception class in the Control.Exception module, [...]]]></description>
		<wfw:commentRss>http://www.adamcrume.com/blog/archive/2010/07/18/adventures-in-haskell-error-handling/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adventures in Haskell &#8211; Pattern Matching</title>
		<link>http://www.adamcrume.com/blog/archive/2010/03/18/adventures-in-haskell-pattern-matching</link>
		<comments>http://www.adamcrume.com/blog/archive/2010/03/18/adventures-in-haskell-pattern-matching#comments</comments>
		<pubDate>Fri, 19 Mar 2010 00:11:19 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[haskell]]></category>
		<category><![CDATA[pattern matching]]></category>

		<guid isPermaLink="false">http://localhost/blog/?p=61</guid>
		<description><![CDATA[
Simple
Another nice feature of Haskell is pattern matching.  I glossed over it in the Fibonacci function, so let&#8217;s review.
fib :: (Integral t) =&#62; t -&#62; t
fib 0 = 1
fib 1 = 1
fib n = fib (n - 1) + fib (n - 2)
Analogous code in Java would be:
public int fib(int n) {
   [...]]]></description>
		<wfw:commentRss>http://www.adamcrume.com/blog/archive/2010/03/18/adventures-in-haskell-pattern-matching/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adventures in Haskell &#8211; Type inference</title>
		<link>http://www.adamcrume.com/blog/archive/2010/01/30/adventures-in-haskell-type-inference</link>
		<comments>http://www.adamcrume.com/blog/archive/2010/01/30/adventures-in-haskell-type-inference#comments</comments>
		<pubDate>Sat, 30 Jan 2010 18:49:23 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[haskell]]></category>
		<category><![CDATA[type inference]]></category>
		<category><![CDATA[types]]></category>

		<guid isPermaLink="false">http://localhost/blog/?p=59</guid>
		<description><![CDATA[
I&#8217;m learning Haskell, so I thought I&#8217;d write about my adventures as I go along.
One of the first things I noticed about Haskell (apart from the obvious, such as being functional) is that it is very good about type inference. This means that the vast majority of the time, I don&#8217;t need to tell Haskell [...]]]></description>
		<wfw:commentRss>http://www.adamcrume.com/blog/archive/2010/01/30/adventures-in-haskell-type-inference/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

