Skip to content

Instantly share code, notes, and snippets.

@qoelet
Created September 19, 2011 01:39
Show Gist options
  • Save qoelet/1225822 to your computer and use it in GitHub Desktop.
Save qoelet/1225822 to your computer and use it in GitHub Desktop.
ghci> max 1 3
3
ghci> let x = max 6
ghci> x 9
9
ghci> x 3
6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment