Help for this page

Select Code to Download


  1. or download this
    my %items = ( z => [ qw/one six/ ],
                  'y' => [ qw/two three five/ ],
    ...
          print "$first $second: $corr{$first}{$second}\n";
       }
    }
    
  2. or download this
    foreach my $item (keys %items) {
       my @set = sort @{$items{$item}};
    ...
          print "$first $second: $corr{$first}{$second}\n";
       }
    }