mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-09 22:49:57 +09:00
9 lines
101 B
Python
9 lines
101 B
Python
|
|
a = 2
|
|
b = 2 + 4 if a < 5 else 'boe'
|
|
assert b == 6
|
|
c = 2 + 4 if a > 5 else 'boe'
|
|
assert c == 'boe'
|
|
|
|
|