Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created May 13, 2015 12:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shigemk2/be729abce5323d137fdd to your computer and use it in GitHub Desktop.
Save shigemk2/be729abce5323d137fdd to your computer and use it in GitHub Desktop.
import System.IO
import Data.Char
main = do
contents <- readFile "baabaa.txt"
writeFile "baabaacaps.txt" (map toUpper contents)
Baa, baa, black sheep,
Have you any wool?
Yes, sir, yes, sir,
Three bags full;
BAA, BAA, BLACK SHEEP,
HAVE YOU ANY WOOL?
YES, SIR, YES, SIR,
THREE BAGS FULL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment