Skip to content

Instantly share code, notes, and snippets.

@pchiusano
Created December 5, 2012 06:14
Show Gist options
  • Save pchiusano/4212903 to your computer and use it in GitHub Desktop.
Save pchiusano/4212903 to your computer and use it in GitHub Desktop.
Machines are monads
data Machine k a where
Emit :: a -> Machine k a -> Machine k a
Await :: k r -> (r -> Machine k a) -> Machine k a -- ignoring fallback for now, not relevant
Halt :: Machine k a
(++) :: Machine k a -> Machine k a -> Machine k a
Halt ++ m2 = m2
(Emit h t) ++ t = Emit h (t ++ m2)
(Await req recv) ++ t = Await req (\res -> recv res ++ t)
instance Monad (Machine k) where
return a = Emit a Halt
Halt >>= f = Halt
Emit h t >>= f = f h ++ (t >>= f)
Await req recv >>= f = Await req (\res -> recv res >>= f)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment