That looks backwards to me. In fact I'd code access as:
for my $record (@records) { for my $line (@$record) { .... } }
$records[firstrecord][firstarray] could also be written $records[firstrecord]->[firstarray] to emphasise that @records is an array of references to arrays. Keep in mind that Perl only allows scalar values for arrays and hashes, but a reference to something (like and array) is a scalar.
In reply to Re^5: Split file output into array of arrays
by GrandFather
in thread Split file output into array of arrays
by spickles
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |