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


in reply to Re^2: Multidimensional Arrays
in thread Multidimensional Arrays

This works, too:
@{${$another[0]}}[$i]
I think ist is a little bit clearer (from in to out): 1. fetch array element 0, 2. dereference, 3. treat it like an array, 4. fetch via [$i].

But this all looks really ugly. It would be better to fix the strange assignment to @another than to use such a complicated expression just to fetch a value...