Logo

Programming-Idioms

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

Idiom #243 Print list

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

Enum.each(a, &IO.inspect/1)

This prints 1 line per element
(print a)

New implementation...