Create a set of Strings with the values a, b and c:
a
b
c
DEBUG|{a, b, c}
Set<String> mySet = new Set<String>{'a', 'b', 'c'}; System.debug(mySet);