Created
August 28, 2015 01:02
-
-
Save nessamurmur/a4eb1e8b6b59afdb5156 to your computer and use it in GitHub Desktop.
Ugh
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
module Ugh where | |
conversation :: String -> String -> IO () | |
conversation x y = do | |
putStrLn x | |
conversation y x | |
main :: IO () | |
main = conversation "I would like to cancel my service." "Would you like to cancel your service?" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment