Created
April 15, 2015 12:14
-
-
Save shigemk2/61f3dc12b937b5848b47 to your computer and use it in GitHub Desktop.
This file contains 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
main = do | |
line <- getLine | |
if null line | |
then return () | |
else do | |
putStrLn $ reverseWords line | |
main | |
reverseWords :: String -> String | |
reverseWords = unwords . map reverse . words |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment