"""Exercise 5.8.5 — Building a set

Chapter 5: Data Structures — Everyday Programming

The program should start with an empty set, add one item, and print the
set with that item.

This program contains exactly one bug. Solution: sol_5_8_5.py
"""

seen = {}
seen.add("apple")
print(seen)   # {'apple'}
