Code viewer for World: Activity 2.2
# ============================================================
# SECTION 2 — The if Statement
# ============================================================

x = 10

if x > 5:
    print("x is greater than 5")

print("this always runs")

# TASK: Change x to 3 and run the world again. Notice which line is skipped.