Help for this page

Select Code to Download


  1. or download this
    
    for my $key ( sort {length($b) <=> length($a)} keys %hash ) {
    ...
        print "$key => $value\n";
    }
    
  2. or download this
    my %order = (Number => 1,
                 EX     => 2);
    ...
        print "$key => $value\n";
    }