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

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