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