mirror of
https://github.com/erg-lang/erg.git
synced 2025-10-01 13:11:11 +00:00
8 lines
89 B
Python
8 lines
89 B
Python
i = !1
|
|
i.update! i -> i * 3
|
|
assert i == 3
|
|
|
|
i.inc!()
|
|
assert i == 4
|
|
i.dec!()
|
|
assert i == 3
|