DEBSOURCES
Skip Quicknav
sources / ghc / 9.0.2-4 / libraries / base / tests / IO / hGetLine003.hs
123456789
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