- or download this
use strict;
use warnings;
...
while (<KID_TO_READ>) {
print "from parent: $_";
}
- or download this
use strict;
use warnings;
print "Hello\n";
print "World\n";
- or download this
from parent: Hello
from parent: World
- or download this
use strict;
use warnings;
...
print "Hello\n";
print STDERR "World\n";