Help for this page

Select Code to Download


  1. or download this
    sort { $a <=> $b } keys %hash
    
  2. or download this
    sort { $hash{$a} <=> $hash{$b} } keys %hash
    
  3. or download this
    sort { $a <=> $b } values %hash
    
  4. or download this
    sort { $hash{$a} <=> $hash{$b} } values %hash