Skip to content

Instantly share code, notes, and snippets.

@konn
Created July 28, 2013 03:58
Show Gist options
  • Select an option

  • Save konn/6097312 to your computer and use it in GitHub Desktop.

Select an option

Save konn/6097312 to your computer and use it in GitHub Desktop.
module DummyMonad where
data DM a = DM
instance Functor DM where
fmap _ DM = DM
instance Monad DM where
return _ = DM
DM >>= _ = DM
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment