Help for this page

Select Code to Download


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