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