Advertisement
Guest User

Untitled

a guest
May 25th, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. import Data.Char
  2.  
  3. main = do
  4. putStrLn "What's your first name?"
  5. firstName <- getLine
  6. putStrLn "What's your last name?"
  7. lastName <- getLine
  8. let bigFirstName = map toUpper firstName
  9. bigLastName = map toUpper lastName
  10. putStrLn $ "hey " ++ bigFirstName ++ " "
  11. ++ bigLastName
  12. ++ ", how are you?"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement