Skip to content

Instantly share code, notes, and snippets.

@reubenjohn
reubenjohn / Haskell Cheat Sheet
Created December 20, 2016 10:12
Cheat Sheet from the video posted by Derek Banas
-- Haskell is a functional programming language
-- Everything is immutable so once a value is set it is set forever
-- Functions can be passed as a parameter to other functions
-- Recursion is used often
-- Haskell has no for, while, or technically variables, but it does have
-- constants
-- Haskell is lazy in that it doesn't execute more then is needed and instead
-- just checks for errors
-- Best Free Haskell Book