Created
May 24, 2017 19:46
-
-
Save buggymcbugfix/3ba460b44b02980ec2489c6cc1d0be7c to your computer and use it in GitHub Desktop.
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
import Data.Char(toUpper) | |
main = do | |
inpStr <- readFile "test.txt" | |
writeFile "output.txt" (map toUpper inpStr) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment