Help for this page

Select Code to Download


  1. or download this
    inner
    outer
    inner
    outer
    
  2. or download this
    BEGIN {
        my $cpid = fork;
        print "inner\n";
        exit 0 unless $cpid;
    }
    print "outer\n";