Help for this page

Select Code to Download


  1. or download this
    $ perl -Mstrict -Mwarnings -E '
    my $x = join("expression", "list");
    ...
    '
    list
    list
    
  2. or download this
    print 'Tabbed items: ', join("\t", @items), "\n";
    
  3. or download this
    sub process_record
    {
        my $array_ref = shift;
        my $record = join q[], @{$array_ref};
        ...