- or download this
do 'called.pl':;
print "printing from calling program\n";
die "dying from calling program, stopped";
- or download this
print "printing from called program\n";
print STDERR "printing from called program to stderr\n";
die "dying from called program, stopped";
- 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.