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