"""Exercise 9.9.2 — Empty function

Chapter 9: Control Flow — Everyday Programming

This empty helper is a placeholder, and the program should print Done.

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

def future_feature():

future_feature()
print("Done")
# Expected: Done
