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