Algebra of Programming: Chapter 1 Section 3
Lists The third section of chapter one covered some basic functional programming concepts. Namely Cons lists, their mirror Snoc lists, and the functions built to operate on them. Particularly the adaptations of the foldn function from the previous section which operated over Nat. data Listl a = Nil | Snoc (Listl a, a) deriving Show [...]