Help for this page

Select Code to Download


  1. or download this
    my $href = {
      env4 => 20140830,
    ...
    
    print "$_, $href->{$_}\n" for sort { $href->{$b} <=> $href->{$a} } key
    +s %$href;
    
  2. or download this
    my %hash = ( ..... );
    print "$_, $hash{$_}\n" for sort { $hash{$b} <=> $hash{$a} } keys %has
    +h;