"""Exercise 10.1.1 — Defining and calling

Chapter 10: Functions — Everyday Programming

This program should define a function that prints a welcome message and
then call it once.

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

def welcome():
    print("Welcome to the science club!")

welcome
