- or download this
$csv->print ($fh1, [$ifile, @cols, @matches ]);
- or download this
$ perl -wE 'my @cols = qw{a b c}; say "*".@cols'
*3
- or download this
$ perl -wE 'my @c = (1,2,3); say "*", @c'
*123
- or download this
$ perl -wE 'my @c = (1,2,3); say "*@c"'
*1 2 3
- or download this
$ perl -wE 'my @c = (1,2,3); say map { "*$_" } @c'
*1*2*3
- or download this
$ perl -wE 'my @c = (1,2,3); say "@{[ map { qq{*$_} } @c ]}"'
*1 *2 *3