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