Skip to content

Instantly share code, notes, and snippets.

@5outh
Last active December 10, 2015 06:08
Show Gist options
  • Save 5outh/4392613 to your computer and use it in GitHub Desktop.
Save 5outh/4392613 to your computer and use it in GitHub Desktop.
instance Monad [] where
return x = [x]
xs >>= f = concatMap f xs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment