in reply to Sorting a Hash of Hashes
my $ref_HoH = { 11 => { 4 => 'Four', }, 33 => { 1 => 'One', }, 2 => { 2 => 'Two', }, };
Note also that you don't need to quote your hash keys (unless they contain spaces) when using the => (fat comma).
Cheers,
JohnGG
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Sorting a Hash of Hashes
by Anonymous Monk on Jul 09, 2006 at 15:11 UTC |