Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    for ( 1..5 ) {
      print { $foo[$_] } "$_\n";
    }
    
  2. or download this
    use warnings;
    use strict;
    
    ...
    for ( keys %foo ) {
      print { $foo{$_} } "$_\n";
    }
    
  3. or download this
    use warnings;
    use strict;
    ...
    } else {
        print STDERR "Failed to fork!?!?!?: $!\n";
    }