/aoc-2021

Picking up haskel (?)

Primary LanguageHaskell

Ramblings while struggling through Haskell

Monads

are difficult.

Use <- to handle IO monads and 'take' something out. Need to learn more about errors & exceptions... Something to do with >>=.

null Quirks

null is wierd. How does it fit in? Anyway null [] evaluates to True. null is a function that checks for empty lists? null [[]] evaluates to False.