mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-28 04:09:05 +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
|