6 lines
132 B
Haskell
6 lines
132 B
Haskell
|
|
import System.Posix.Process
|
||
|
|
|
||
|
|
main = do
|
||
|
|
forkProcess (putStrLn "This is the new process")
|
||
|
|
putStrLn "This is the original process"
|