"""Exercise 10.2.1 — Passing an argument

Chapter 10: Functions — Everyday Programming

This program should greet a student by name.

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

def greet_student(name):
    print("Hello,", name)

greet_student()
