target has asked for the wisdom of the Perl Monks concerning the following question:
I know this code doesn't work, the for $k (0 .. $#array[$i]) line is simply a representation of what I would like to do.for $i (0 .. $#array) { for $k (0 .. $#array[$i]) { print "$array[$i][$k]"; } }
|
---|