Skip to content

Instantly share code, notes, and snippets.

@yangsu
Created April 23, 2013 20:38
Show Gist options
  • Save yangsu/5447170 to your computer and use it in GitHub Desktop.
Save yangsu/5447170 to your computer and use it in GitHub Desktop.
Haskell Maybe Monad
instance Monad Maybe where
return x = Just x
Nothing >>= f = Nothing
Just x >>= f = f x
fail _ = Nothing
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment