1 2 3 4 5 6
import System.IO main = do withFile "girlfriends.txt" ReadMode (\handle -> do contents <- hGetContents handle putStr contents)