8 lines
133 B
Text
8 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;
|