Help for this page

Select Code to Download


  1. or download this
        my $sorter = \&my_sorter;
        foreach my $key (sort { $sorter->(\%hash, $a, $b) } keys %hash) {
    ...
            my ($hashref, $a, $b) = @_;
            return $hashref->{$a} cmp $hashref->{$b};
        }