Skip to content

Instantly share code, notes, and snippets.

@nessamurmur
Created August 28, 2015 01:02
Show Gist options
  • Save nessamurmur/a4eb1e8b6b59afdb5156 to your computer and use it in GitHub Desktop.
Save nessamurmur/a4eb1e8b6b59afdb5156 to your computer and use it in GitHub Desktop.
Ugh
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