Help for this page

Select Code to Download


  1. or download this
    #!perl -l
    system 1, q/perl -le "print 'child'; sleep 2; print 'child'"/;
    ...
    print 'parent';
    sleep 2;
    print 'parent';
    
  2. or download this
    child
    parent
    child
    parent