- or download this
use strict;
use warnings;
...
while ( my @vals = $it->() ) {
print "@vals\n";
}
- or download this
a b c
e 1 2
3 4 5
3 f
- or download this
use strict;
use warnings;
...
END
print wrap(" ", '', $text);
- or download this
BTW - I use
this for
...
multi-line output
- tables and
such.