RosettaCodeData/Task/Fork/NewLISP/fork.l

5 lines
127 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(let (pid (fork (println "Hello from child")))
(cond
((nil? pid) (throw-error "Unable to fork"))
('t (wait-pid pid))))