Help for this page
HoA test 1: ARRAY(0x8111b78) HoA test 1: aaa HoA test 1: 3
# Initialisation my %HoA = ( 'camel' => [ 'flea', 'bug-ridden', 'brown' ], ... $HoA{'frog'}= [ 'tadpole', 'no bugs', 'green' ]; # Getting element of an array print "A camel is: ".$HoA{'camel'}->[2];
# HoA from above use Data::Dumper; print Dumper(\%HoA);
$VAR1 = { 'flea' => [ ... 'green' ] };