summaryrefslogtreecommitdiff
path: root/girlfriend.hs
blob: 27a87f472a7c4e2070b3b9747ad459ff71aafb0b (plain)
1
2
3
4
5
6
import System.IO

main = do
    withFile "girlfriend.txt" ReadMode (\handle -> do
        contents <- hGetContents handle
        putStr contents)