1 2 3 4 5 6
import Control.Concurrent main = do forkIO $ do threadDelay 100000; putStrLn "child" getLine putStrLn "parent"