Skip to content

Instantly share code, notes, and snippets.

@5outh
Created December 27, 2012 21:09
Show Gist options
  • Save 5outh/4391987 to your computer and use it in GitHub Desktop.
Save 5outh/4391987 to your computer and use it in GitHub Desktop.
class Monad m where
return :: a -> m a
(>>=) :: m a -> (a -> m b) -> m b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment