"""Exercise 9.4.3 — Printing each fruit

Chapter 9: Control Flow — Everyday Programming

This program should print each fruit in the list on its own line.

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

fruits = ["apple", "banana", "cherry"]

for fruit in fruits
    print(fruit)
