Help for this page

Select Code to Download


  1. or download this
    do 'called.pl':;
    print "printing from calling program\n";
    die "dying from calling program, stopped";
    
  2. or download this
    print "printing from called program\n";
    print STDERR "printing from called program to stderr\n";
    die "dying from called program, stopped";
    
  3. or download this
    printing from called program
    printing from called program to stderr
    printing from calling program
    dying from calling program, stopped at calling.pl line 3.