- or download this
c:\@Work\Perl\monks>perl -wMstrict -MData::Dump -le
"my %hash;
...
dd \%hash;
"
{ www => { xxx => { yyy => {} } } }
- or download this
c:\@Work\Perl\monks>perl -wMstrict -MData::Dump -le
"no autovivification;
...
dd \%hash;
"
{}
- or download this
c:\@Work\Perl\monks>perl -wMstrict -MData::Dump -le
"my %h;
...
"access in aliased (lvalue) context",
{ www => { xxx => { yyy => { zzz => undef } } } },
)