Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    ...
    foreach my $key (keys %hash){
        print "$key showed up $hash{$key} times\n" if $hash{$key} != 1;
    }