Vi Veri Veniversum Vivus Vici
It can be an error in Perl 5.10, but following code will works properly in 5.14+:
Just use "%" symbol before accessing to hash:
And it will work on both versions of Perl:
#!/usr/bin/perl -w use strict; use warnings; use Data::Dumper; my $h = {}; $h->{'d'} = {}; $h->{'d'}{'t1'} = 'a'; $h->{'d'}{'t2'} = 'b'; my $hh = $h->{'d'}; for my $k (keys $hh) { my $v = $hh->{$k}; print "$k = $v\n"; }
Just use "%" symbol before accessing to hash:
#!/usr/bin/perl -w use strict; use warnings; use Data::Dumper; my $h = {}; $h->{'d'} = {}; $h->{'d'}{'t1'} = 'a'; $h->{'d'}{'t2'} = 'b'; my $hh = $h->{'d'}; for my $k (keys %$hh) { my $v = $hh->{$k}; print "$k = $v\n"; }
And it will work on both versions of Perl:
$ perl test_hashes.pl
t1 = a
t2 = b
$ perl -v
This is perl 5, version 18, subversion 2 (v5.18.2) built for x86_64-linux-gnu-thread-multi
(with 41 registered patches, see perl -V for more detail)
$ perl test_hashes.pl
t2 = b
t1 = a
$ perl -v
This is perl, v5.10.1 (*) built for x86_64-linux-thread-multi