Logo

Programming-Idioms

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

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.

import "fmt"
for _, v := range x {
	fmt.Println(v)
}

note that this will only print the values of the set, not the keys
using System;
foreach (var el in x)
{
    Console.WriteLine(el);
}

New implementation...