http://www.perlmonks.org?node_id=991709


in reply to Re: perl hash array printing
in thread perl hash array printing

yes i believe so only made for array like with @(), I am going to try this out:)

Replies are listed 'Best First'.
Re^3: perl hash array printing
by Anonymous Monk on Sep 05, 2012 at 07:43 UTC
    $ perl -e " use Data::Dump; $totalhash{hello}{world}[1]=9; dd \%total +hash; dd $totalhash{hello}{world}[1]; " { hello => { world => [undef, 9] } } 9

    See References quick reference