Files
RustPython/vm/tests/if.py
2018-06-06 23:30:48 +02:00

16 lines
121 B
Python

x = 0
if 1 == 1:
x += 5
else:
x += 3
assert x == 5
y = 0
if 1 == 2:
y += 5
else:
y += 3
assert y == 3