Skip to content

Instantly share code, notes, and snippets.

@divarvel
Created December 12, 2014 15:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save divarvel/359f4bb3d56fe7a4966b to your computer and use it in GitHub Desktop.
Save divarvel/359f4bb3d56fe7a4966b to your computer and use it in GitHub Desktop.
just value = Cont ($ value)
nothing def = Cont (const def)
result = do
x <- just 5
just (x + 5)
result' = do
x <- nothing(0)
just (x + 5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment