"""Exercise 10.2.4 — Using the parameter

Chapter 10: Functions — Everyday Programming

This program should double the number that is passed in and print 10.

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

def double(number):
    return number * 2

print(double(number))
