Help for this page

Select Code to Download


  1. or download this
    my %hash = (
        Mouse => {Index => 0, Value => 'Jerry'},
        Cat   => {Index => 1, Value => 'Tom'},
        Dog   => {Index => 2, Value => 'Spike'}
    );
    
  2. or download this
    my $hash = {
        Mouse => {Index => 0, Value => 'Jerry'},
        Cat   => {Index => 1, Value => 'Tom'},
        Dog   => {Index => 2, Value => 'Spike'}
    };
    
  3. or download this
    foreach (sort {$hash{$a} {'Index'} cmp $hash{$b} {'Index'}} keys %hash
    +)
    
  4. or download this
    $hash->{$a}