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

uva has asked for the wisdom of the Perl Monks concerning the following question:

how to create multi dimensional arrays in perl.since what ever we give, like
$array[1] [2]='help'; print $array[1][2]; and $peanut[0]->[0]->[0] ='cracked'; print $peanut[0]->[0]->[0] ;
,it takes and print the value. how can we limit the size eg : in c we give
"int dim[3] [4];"