diff options
author | Joe Zhao <ztuowen@gmail.com> | 2014-11-06 17:27:22 +0800 |
---|---|---|
committer | Joe Zhao <ztuowen@gmail.com> | 2014-11-06 17:27:22 +0800 |
commit | 877314fbeb83b231e61accfcd68e0cd73814bb32 (patch) | |
tree | 46c7b49c6c966959898a5369e2a579e4d4227f33 | |
parent | 5bdaa1e4ffe40add10f000ee993e6b500c419a37 (diff) | |
download | haskbox-old-877314fbeb83b231e61accfcd68e0cd73814bb32.tar.gz haskbox-old-877314fbeb83b231e61accfcd68e0cd73814bb32.tar.bz2 haskbox-old-877314fbeb83b231e61accfcd68e0cd73814bb32.zip |
-rw-r--r-- | girlfriend.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/girlfriend.hs b/girlfriend.hs index 27a87f4..5bf61aa 100644 --- a/girlfriend.hs +++ b/girlfriend.hs @@ -1,6 +1,6 @@ import System.IO main = do - withFile "girlfriend.txt" ReadMode (\handle -> do + withFile "girlfriends.txt" ReadMode (\handle -> do contents <- hGetContents handle putStr contents) |