summaryrefslogtreecommitdiff
path: root/ghc/misc/examples/io/io021/Main.hs
blob: c45a40b9b1e4c707174f02fc5a2d619b7ec3e3ce (plain)
1
2
3
4
5
6
import IO -- 1.3

main = 
    hSetBuffering stdin NoBuffering	>>
    hSetBuffering stdout NoBuffering	>>
    interact id