"""Exercise 10.7.2 — Forgetting to return

Chapter 10: Functions — Everyday Programming

This program should print the doubled value 14, using the function's
return value.

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

def double(number):
    answer = number * 2

print(double(7))  # 14
