RosettaCodeData/Task/Fork/Pop11/fork.pop11
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

7 lines
133 B
Text

lvars ress;
if sys_fork(false) ->> ress then
;;; parent
printf(ress, 'Child pid = %p\n');
else
printf('In child\n');
endif;