mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
16 lines
121 B
Python
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
|