Skip to content

Instantly share code, notes, and snippets.

@5outh
Created December 27, 2012 21:09
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