summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/lib/IO/hGetLine003.hs
blob: cc03c604aa04f4dddbc9d7cf589359825d2b4898 (plain)
1
2
3
4
5
6
7
8
9
import System.IO

main = f stdin
  where f h = do p <- hIsEOF h
		 if p then putStrLn "done" 
		      else do l <- hGetLine h
			      putStrLn l
			      f h