Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Perl

Idiom #243 Print list

Print the contents of the list or array a on the standard output.

print "@items\n";

Delimited by space
print join(', ', @items) . "\n";
(print a)

New implementation...