Help for this page

Select Code to Download


  1. or download this
      while (my ($month, $total) = each(%total_counts)) {
        print "$month: $total\m" ;
      } ;
    
  2. or download this
      foreach my $month (sort keys %total_counts) {
        print "$month: $total_counts{$month}\n" ;
      } ;
    
  3. or download this
      foreach my $month (sort_months(keys %total_counts)) {
      ....
    
  4. or download this
      foreach my $user (sort keys %user_counts) {
        my $r_counts = $user_counts{$user} ;
    ...
          print "  $month $count\n" ;
        } ;
      } ;