RosettaCodeData/Task/Fork/Raku/fork.raku

10 lines
191 B
Raku
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
use NativeCall;
sub fork() returns int32 is native { ... }
if fork() -> $pid {
print "I am the proud parent of $pid.\n";
}
else {
print "I am a child. Have you seen my mommy?\n";
}