A simple and space-effecient Go implementation of a set of strings.
s := stringset.New()
s.Add("foo")
s.Add("bar", "baz")
fmt.Println(s)
// Output:
// [bar foo baz]
fmt.Println(s.Contains("foo"))
// Output:
// true
s.Remove("bar")
fmt.Println(s)
// Output:
// [foo]