- or download this
my (@b) = qw(un deux trois quatre jedan dva tri
tcheteri one two three );
- or download this
my ($max) = sort {$b <=> $a} map length, @a;
- or download this
my $col=4;
for(@b){ $_ = substr($_ . ' ' x $max, 0, $max +1)}
@a = @b;
for (;@a;){print splice (@a, 0, $col),"\n"}
- or download this
@a = @b;
my @c;
...
} (0 .. $#b);
}
map {print @$_,"\n"} @c;
- or download this
use strict;
use warnings;
...
} (0 .. $#b);
}
map {print @$_,"\n"} @c;