3 lines
176 B
Text
3 lines
176 B
Text
(unless (fork) # In child process
|
|
(println *Pid) # Print the child's PID
|
|
(bye) ) # and terminate
|