erg 0.6.53

The Erg programming language
Documentation
1
2
3
4
5
6
7
8
9
10
p! *x: Int = print! x
p! 1, 2, "a" # ERR

first *x = x[0]
assert first(1, 2, 3) == "b" # ERR

f = (*_: Int) -> None
f "a", 1, 2

_: (Int, Str) -> NoneType = f # ERR