mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-30 12:51:10 +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
|