8 lines
120 B
Python
Raw Normal View History

2025-10-10 16:07:00 +08:00
# test basic int operations
# test conversion of bool on RHS of binary op
a = False
print(1 + a)
a = True
print(1 + a)