Help for this page

Select Code to Download


  1. or download this
    for my $x(sort {return $hash{$a} <=> $hash{$b}} keys %hash)
    {
       print "$x = $hash{$x}\n";
    }
    
  2. or download this
    for my $x(sort {return $hash{$a} cmp $hash{$b}} keys %hash)
    {
       print "$x = $hash{$x}\n";
    }