Notes on Haskell
Various notes on various Haskell things, as I climb my Mt. Everest and pursue my Moby Dick.
1 Books
- Learn You a Haskell for Great Good!
- This is a great book, light-hearted and yet solid. When I refer to Learn You a Haskell, this is the book I'm referring to.
- Real World Haskell
- Another good book that I've tried to work my way through but got lost. I plan to get back to it when I finish Learn You a Haskell.
2 Pages
- zippers.org
- (in progress) On creating a Zipper data structure in Haskell
- write-a-haskell-program.org
- Notes on writing a program (or service), now that I've finally finished Learn You a Haskell.
- ../Orgzly/monad-journey.html
- Resuming My Journey Toward an Understanding of Haskell Monads (Yet Again). This is basically my notes file as I fight my way through the last three chapters of Learn You a Haskell.
- beginners-guide-to-haskell.org
- Because why not?
- KnightMoves.pdf
- A writeup of my attempt to decipher what's going in the Learn You a Haskell
section named "A knight's quest" treating
List
as a monad in determining where a chess knight can move. - applicative-monad.org
- Exercise in getting Pierre to walk a tightrope from Learn You a Haskell, based on an offhand comment in the text about not being able to do it with just applicative functors.
- haskell-newtype-errors.org
- Definition of "Functor" (Notes on Errors Encountered While Trying to Use Newtype to Declare a Type an Instance of Functor)