erg 0.6.53

The Erg programming language
Documentation
1
2
3
4
5
6
i = !None # this shold be warned because `None` is a singleton (cannot be changed)
i.update! _ -> 2 # this should be errored

n = !2
n.update! i -> i * 2
assert n == 4