In the following code:
use strict;
use warnings;
use Data::Dumper;
my %hash = %Whatever::whatever;
my @array = @Whatever::whatever;
print Dumper \@array;
print Dumper \%hash;
My understanding is that @Whatever::whatever is accessing the symbol table, and doesn't produce an error message because symbol table is a hash. But why there isn't at least a warning message for accessing a non-existing element?
my @array = @Whatever;does generate an error, of course. – Jonathan Leffler May 18 '12 at 4:27@Whatever::whateveridentifies a dynamically scoped array named@whateverin theWhateverpackage, rather than that is it "accessing the symbol table ... [somewhat as] a hash." Qualified identifiers like that have always avoidedstrictures. – pilcrow May 18 '12 at 13:22