Help for this page

Select Code to Download


  1. or download this
    foreach (sort {$a <=> $b} keys %hash) {
            # do something with $hash{$_} ...
    }
    
  2. or download this
    foreach (sort keys %hash) {
            # ...
    }