mirror of
https://github.com/pocketpy/pocketpy
synced 2025-11-07 20:20:17 +00:00
6 lines
93 B
Python
6 lines
93 B
Python
assert ( x := 1) == 1
|
|
assert ( y := 1) + 2 == 3
|
|
|
|
a = (y := 4) + 5
|
|
assert a == 9
|
|
assert y == 4 |