"""Exercise 10.1.2 — The colon

Chapter 10: Functions — Everyday Programming

This program defines a function that prints the boiling point of water
and calls it.

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

def boiling_point()
    print("Water boils at 100 degrees Celsius.")

boiling_point()
