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


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

$ 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