Skip to content

Instantly share code, notes, and snippets.

@rustyrazorblade
Created August 10, 2012 01:35
Show Gist options
  • Save rustyrazorblade/3310153 to your computer and use it in GitHub Desktop.
Save rustyrazorblade/3310153 to your computer and use it in GitHub Desktop.
what the fuck is this
class Monad m where
(>>=) :: m a -> (a -> m b) -> m b
(>>) :: m a -> m b -> m b
return :: a -> m a
fail :: String -> m a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment