erg 0.6.53

The Erg programming language
Documentation
1
2
3
4
5
6
7
8
foo first: Int, second: Int = log first, second

foo(1, 2, *[1, 2]) # ERR
data = {"first": 1, "second": 2}
foo(1, 2, **data) # ERR

foo(1, *2) # ERR
foo(1, **[2]) # ERR