Help for this page
my @sorted = sort keys %hash;
foreach my $key (sort keys %hash) { # Do something with $hash{key}; }
my @sortedkeys = sort { $hash{$a} cmp $hash{$b} } keys %hash;