Skip to content

Instantly share code, notes, and snippets.

@5outh
Created December 27, 2012 22:19
Show Gist options
  • Save 5outh/4392596 to your computer and use it in GitHub Desktop.
Save 5outh/4392596 to your computer and use it in GitHub Desktop.
instance Monad Maybe where
return = Just
Nothing >>= f = Nothing
(Just a) >>= f = f a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment