Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    foreach my $o (@outer) {
        print $o, "\n";
    }
    
  2. or download this
    First
    one
    ...
    oneHIII
    twoHIII
    threeHIII
    
  3. or download this
    foreach my $o (@outer) {
        $o .= 'HIII';
        print $o, "\n";
    }