Logo

Programming-Idioms

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

Idiom #243 Print list

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

print(a);

Newline automatically appended.
(print a)

New implementation...