http://qs321.pair.com?node_id=410365


in reply to Re: Multidimensional Arrays
in thread Multidimensional Arrays

my @another = \$arr[1];

@another has a single element - a reference to a reference to an array.

Try:

${${$another[0]}}[$i]

Update: fixed typo