Skip to content

Instantly share code, notes, and snippets.

View naldoco's full-sized avatar

Reynaldo Cordero naldoco

View GitHub Profile
@TikhonJelvis
TikhonJelvis / haskell-to-do.hs
Created February 21, 2022 20:10
Haskell to-do list with BlockArguments and Writer
list :: [Task Text]
list = to do
(□) "milk"
(□) "eggs"
(✓) "orange juice"
data Task a = Done a | Todo a deriving (Show)
to = execWriter
  • A Type of Programming
  • Algorithm Design with Haskell
  • Beginning Haskell: A Project-Based Approach
  • Developing Web Apps with Haskell and Yesod
  • Functional Design and Architecture
  • Get Programming with Haskell
  • Haskell Book
  • Haskell Cookbook
  • Haskell Data Analysis Cookbook
  • Haskell Design Patterns