1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# Individual feature tests - one per file # Test 1: Literals print("Test 1: Literals") x = 42 print(x) y = 3.14 print(y) z = "hello" print(z) b = true print(b) n = null print(n) print("✓ Literals work")