Fork: Difference between revisions

Content deleted Content added
Added PicoLisp
Line 130:
[ "Hello form child" print flush 0 _exit ] [ drop "Hi from parent" print flush ] with-fork</lang>
=={{header|Haskell}}==
<lang haskell>import ControlSystem.ConcurrentPosix.Process
{{incorrect|Haskell|It creates threads, not processes.}}
 
<lang haskell>import Control.Concurrent
 
main = do
forkIOforkProcess (putStrLn "This is the new process")
putStrLn "This is the original process"</lang>