"""Solution 10.1.5 — Remember to call

Chapter 10: Functions — Everyday Programming

Bug type: Logical

Defining a function never runs it. You must call freezing_point() for
anything to appear on screen.

Exercise: ex_10_1_5.py
"""

def freezing_point():
    print("Water freezes at 0 degrees Celsius.")

freezing_point()
