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

9 lines
119 B
Perl
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
use Proc::Fork;
# parent code ...
run_fork {
child {
# child code ...
}
};
# parent code continues ...