unlox775 has asked for the wisdom of the Perl Monks concerning the following question:
but this code which *should* be functionally identical, works fine:use Data::Dumper qw(Dumper); print Dumper $cc::zz{key1}{subkey1};
To get the whole source for the example download:use Data::Dumper qw(Dumper); my $key1 = $cc::zz{key1}; print Dumper $key1->{subkey1};
|
|---|