These are notes and quotes i take about Haskell while reading the Learn You a Haskell for Great Good! book. Introduction (Book Page) install repl compile Starting Out (Book Page) operators functions lists tuples examples Types and Typeclasses (Book Page) types type variables typeclasses 101 Syntax in Functions (Book Page) pattern matching guards where let case Recursion (Book Page) basics quicksort fibonacci Higher Order Functions (Book Page) curried higher-orderism map filter takeWhile collatz sequences lambdas fold scan function application [$] function composition [.] Modules (Book Page) loading modules Data.List Data.Function Data.Char Data.Map Data.Set making modules GeometryComplete Geometry Making Our Own Types and Typeclasses (Book Page) algebraic data types record syntax type parameters derived instances type synonyms (wip) recursive data structures ...