in reply to Multidimensional Array
You did not use references to your a_4, a_3 and a_a arrays. You probably meant to do this:@a_a = (\a_4, \a_3); @a_b = (\@a_2, \a_a);
| | V V @a_a = (\@a_4, \@a_3); @a_b = (\@a_2, \@a_a); ^ |
You would have had a clue something was wrong had you use strict and warnings.
|
|---|