Logo

Programming-Idioms

  • Fortran
  • Dart
  • Erlang
  • VB
  • Perl

Idiom #255 Print a set

Print the values of the set x to the standard output.
The order of the elements is irrelevant and is not required to remain the same next time.

print "$_\n" for @x;

Technically not a 'set' since an array can have repeat values. Either you need to enforce uniqueness yourself or use a module like Set::Light.
print(x);
using System;
foreach (var el in x)
{
    Console.WriteLine(el);
}

New implementation...