Python
# Examples of sets in Python
languages = {'Python', 'Java', 'C++'}
unique_numbers = set([1, 2, 2, 3, 3, 4])