erg_compiler 0.6.53

Centimetre: the Erg compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.Number: ClassType
.Complex: ClassType
.Complex <: .Number
.Complex.
    real: Float
    imag: Float
    conjugate: |C <: .Complex|(self: C) -> C
.Real: ClassType
.Real <: .Complex
.Rational: ClassType
.Rational <: .Real
.Rational.
    numerator: Int
    denominator: Int
.Integral: ClassType
.Integral <: .Rational