# main.py — imports from utils.py
# place in the same folder as utils.py
# redhorndev.com

import utils
from utils import is_even

# ─────────────────────────────────────────────
# import utils — access with prefix
# ─────────────────────────────────────────────

print(utils.greet("Raven"))                     # Hello, Raven.
print(utils.celsius_to_fahrenheit(100))         # 212.0

# ─────────────────────────────────────────────
# from utils import — no prefix needed
# ─────────────────────────────────────────────

print(is_even(4))                               # True
print(is_even(7))                               # False
