Help for this page

Select Code to Download


  1. or download this
      my %counts;
      while (my $key = shift @out) {
        $counts{$key} += shift @out1;
      }
    
  2. or download this
      print "$_: \t$counts{$_}\n" for sort keys %counts;