"""Solution 9.4.3 — Printing each fruit

Chapter 9: Control Flow — Everyday Programming

Bug type: Syntax

The for statement is missing its colon. Adding it fixes the parse error.

Exercise: ex_9_4_3.py
"""

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

for fruit in fruits:
    print(fruit)
