RosettaCodeData/Task/Fork/Pop11/fork.pop11

8 lines
133 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
lvars ress;
if sys_fork(false) ->> ress then
;;; parent
printf(ress, 'Child pid = %p\n');
else
printf('In child\n');
endif;