erg 0.6.53

The Erg programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
a = ![]

a.sort! # WARN

# NOTE: For safety reasons this is assumed to be an error, but maybe this restriction can be relaxed
print! a # ERR

v1 = ![]
v2 = v1 as List!(Int or Str, _)
v2.push! "a"

print! v1 # ERR