Created
December 5, 2016 09:33
-
-
Save michaelt/c9abe9139d5ea9bf6a6b366d2fc90010 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import Control.Concurrent (threadDelay) | |
import Control.Concurrent.Async (race) | |
import Control.Monad | |
marika = forever $ do | |
threadDelay (10^6) | |
putStrLn "Marika Boo!!!" | |
s = do | |
c <- getChar | |
case c of | |
's' -> return () | |
_ -> s | |
main = do | |
s | |
race marika s | |
return () |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment