perl-hash

Tie::IxHash ordered associative arrays in Hash of Hashes ?

Hi, How can I preserve the order in which the hash elements were added FOR THE SECOND VAR ? ( Hash of Hashes ) For example: use Tie::IxHash; my %hash; tie %hash, "Tie::IxHash"; for my $num (0 .. 5){ $hash{"FirstVal$num"}++; } for my $num (0 .. 5){ $hash{"FirstValFIXED"}{"SecondVal$num"}++; } print Dumper(%hash); When dum...