Software Engineering discussion
Learn You a Haskell
>
Believe the Type
date
newest »


Also, Real World Haskell book contains more examples and exercises. Free online version of that book contains inserted comments and even full discussions for each paragraph where readers can ask and answer questions. I think it was very interesting idea for building knowledge, especially in such literature.
I agree that Real World Haskell is a good book too. For me, it wasn't the best choice for a first book, but it is one I would recommend after a more basic one, like this one.
factorial :: Integer -> Integer
Haskell is a very strongly typed language. It took me a long time to get my first non-toy program to compile, but once it did it ran correctly.