Help for this page
# Turning an arrayref into an array my @arr = @$aref; ... for my $i (@$aref){ ... }
$aref = [ [ ... 9 ] ];
for my $deref (@$aref){ for my $element (@$deref){ print "$element\n"; } }