Help for this page

Select Code to Download


  1. or download this
    my @sorted_keys = sort { $a <=> $b } keys(%foo);
    
  2. or download this
    my @sorted_values = @foo{ sort { $a <=> $b } keys(%foo) };