Learn You a Haskell for Great Good 读书笔记 8
8. Input & Output123456789import Data.Charmain = do putStrLn "What's your first name?" firstName <- getLine putStrLn "What's your last name?" lastName <- getLine let bigFirstName = map
...