Created
December 12, 2017 16:34
-
-
Save haskellcamargo/1db39a788aa4c3f3cde2ab64cf70f778 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Monad m where | |
(>>=) :: m a -> (a -> m b) -> m b | |
(>>) :: m a -> m b -> m b | |
return :: a -> m a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment