Code viewer for World: Hello World
"""
Topic: Hello World
Purpose: Introduce the print() function
Output: Displays a message in the terminal
"""

# -----------------------------
# 1. Printing a message
# -----------------------------
# The print() function is used to display text or data in the terminal.

print("Hello World")  # Displays Hello World on the terminal