RosettaCodeData/Task/Fork/Pop11/fork.pop11

8 lines
133 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
lvars ress;
if sys_fork(false) ->> ress then
;;; parent
printf(ress, 'Child pid = %p\n');
else
printf('In child\n');
endif;