Help for this page

Select Code to Download


  1. or download this
    %hash = (processone => 1,
             processtwo => 0.005,
    ...
    @_ = sort { $hash{$a} <=> $hash{$b} } keys %hash;
    print $_[0], ' => ', $hash{$_[0]}, " (lowest)\n";
    print $_[-1], ' => ', $hash{$_[-1]}, " (highest)\n";