Created
November 16, 2017 18:49
-
-
Save deque-blog/f182c348a73e95e5a50e06e8a15bca2e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interpret : IOSpec r -> IO r | |
interpret (Pure a) = pure a | |
interpret (Bind a f) = interpret a >>= interpret . f | |
interpret ReadLine = getLine | |
interpret (WriteLine s) = putStrLn s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment