Help for this page

Select Code to Download


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