for my $row (@out){ local $" = "\t"; print "@$row\n"; }
See perlvar for details.
If you want to iterate over it:
for my $row (@out){ for my $col (@$row){ # do something; } print "\n"; }
In reply to Re: Print AOA into tab sep values
by moritz
in thread Print AOA into tab sep values
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |