citizen428.blog()

Try to learn something about everything

Learning Haskell

To get my mind off Ruby I recently started dabbling in Haskell. I really like what I’ve seen so far and it seems I’m finally starting to understand functional programming (my two attempts with Practical Common Lisp never got past the first few chapters).

In case you are interested in Haskell too, here’s a list of the resources I use:


  • Haskell :: Functional Programming with Types: A very nice Wikibook covering a wide range of topics from the very basics to Monads, Arrows and Zippers.

  • Learn You a Haskell for Great Good: A nice and colorful tutorial in the spirit of Why’s (Poignant) Guide to Ruby

  • Real World Haskell: Yes, the entire book can be read online (including per paragraph comments!) for free! I’ve only just started reading this, since I first want to brush up my basic Haskell a bit, but once I’m past the Project Euler stage this is probably gonna be very nice.

  • Write Yourself a Scheme in 48 Hours: Now that I’m slowly getting the hang of this functional programming thing, why not write an interpreter for one functional language in another? “Along the way, you’ll learn Haskell’s I/O, mutable state, dynamic typing, error handling, and parsing features. By the time you finish, you should be fairly fluent in both Haskell and Scheme”. Sounds good to me! :)

Comments