Skip to content

Instantly share code, notes, and snippets.

@diegopacheco
Created March 6, 2012 23:41
Show Gist options
  • Save diegopacheco/1989815 to your computer and use it in GitHub Desktop.
Save diegopacheco/1989815 to your computer and use it in GitHub Desktop.
Monad Maybe Haskell
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