Help for this page

Select Code to Download


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