Skip to content

Instantly share code, notes, and snippets.

@calebh
Created July 21, 2019 00:10
Show Gist options
  • Save calebh/ee74df3975de82212cde5662924a097a to your computer and use it in GitHub Desktop.
Save calebh/ee74df3975de82212cde5662924a097a to your computer and use it in GitHub Desktop.
instance Monad Maybe where
Nothing >>= f = Nothing
(Just x) >>= f = f x
return = Just
instance Monad [] where
xs >>= f = concat (map f xs)
return x = [x]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment