summaryrefslogtreecommitdiff
path: root/libraries/base/tests/IO/hGetContentsS001.hs
blob: be0935795e02d51704673c2eae747b93b76b2317 (plain)
1
2
3
4
5
6
7
8
import System.IO

file = "hGetContentsS001.txt"

main = do
  writeFile file "ab\ncd\nef\ngh\n"
  h <- openFile file ReadMode
  hGetContents' h >>= putStr