in reply to Two dimensional array problem
If you get rid of the curlies (use round parentheses instead), then you'll be able to reference the array as:use Data::Dumper; print Dumper(\@Column_Info);
my @array = ( [0,0], [0,1], [1,0], [1,1] ); for (my $x=0; $x<4; $x++) { for (my $y=0; $y<2; $y++) { printf "%d,%d = %n", $x, $y, $array[$x][$y]; } }
|
|---|