erg 0.6.53

The Erg programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
D = Class { Int: [Str; _] }
_ = D.new {:}
_ = D.new {1: ["a"]}

D! = Class Dict! { Int: [Str; _] }
_ = D!.new !{:}
_ = D!.new !{1: ["a"]}

D2 = Class { Str: List(Int) }
_ = D2.new { "a": [1] }

D3 = Class { Str: List!(Int) }
_ = D3.new { "a": ![1] }

D4! = Class Dict! { Str: List!(Int) }
_ = D4!.new !{ "a": ![1] }