- or download this
formline( "@<< @<< @<<", '1', '2', '2' );
print "$^A\n";
- or download this
format =
.
formline( "@<< @<< @<<", '1', '2', '2' );
write;
- or download this
format =
@<< @<< @<<
1, 2, 2
.
write;
- or download this
say join ' ', map sprintf('%-3d', $_), 1, 2, 2;