- or download this
my @headings = map { "Head$_" } (1..5);
my @names = qw(
...
uno dos tres
een twee drie
);
- or download this
Head1onetwothreeHead2undeuxtroisHead3einszweidrei ...
- or download this
use strict; # please
...
# vertical
printf("%10s %10s %10s\n",@headings);
printf("%10s %10s %10s\n",@$_) for @names;