RosettaCodeData/Task/Fork/Perl/fork-3.pl

9 lines
119 B
Perl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
use Proc::Fork;
# parent code ...
run_fork {
child {
# child code ...
}
};
# parent code continues ...