Help for this page

Select Code to Download


  1. or download this
    @sorted = sort { $a->{VAL} <=> $b->{VAL} } keys %bigHash;
    return \@sorted;
    
  2. or download this
    return [ sort { $a->{VAL} <=> $b->{VAL} } keys %bigHash ];