Skip to content

Instantly share code, notes, and snippets.

@yangsu
Created April 23, 2013 20:39
Show Gist options
  • Save yangsu/5447174 to your computer and use it in GitHub Desktop.
Save yangsu/5447174 to your computer and use it in GitHub Desktop.
Haskell Maybe Example
Prelude> return "WHAT" :: Maybe String
Just "WHAT"
Prelude> Just 9 >>= \x -> return (x*10)
Just 90
Prelude> Nothing >>= \x -> return (x*10)
Nothing
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment