erg 0.6.53

The Erg programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
x = 0


def f(x: int) -> int:
    return x + 1


class C:
    def __init__(self, x: int) -> None:
        self.x = x

    def f(self, y: int) -> int:
        return self.x + y