RosettaCodeData/Task/Fork/NewLISP/fork.newlisp
2015-02-20 00:35:01 -05:00

4 lines
127 B
Text

(let (pid (fork (println "Hello from child")))
(cond
((nil? pid) (throw-error "Unable to fork"))
('t (wait-pid pid))))