in reply to Re^2: Initializing multidimensional arrays
in thread Initializing multidimensional arrays

Just a question.. given that Perl arrays are 0 indexed would it be more correct to state:
$matrix[4][4];
. Also can't you do something like:
$#matrix = 4;
(not sure how you'd do the second dimension).