erg 0.6.53

The Erg programming language
Documentation
1
2
3
4
5
6
7
8
9
private = "this is a private variable"
.public = "this is a public variable"

.C = Class {.x = Int}
.C.
    x = 1
.C|<: Eq|.
    `==` self, other =
        self.x == other.x