Help for this page

Select Code to Download


  1. or download this
    my @data = ("a", "b", "c");
    
    say join "\t", @data;
    say join '\t', @data;
    
  2. or download this
    $ perl test.pl
    a       b       c
    a\tb\tc
    $