erg 0.6.53

The Erg programming language
Documentation
1
2
3
4
5
6
7
8
9
@Inheritable
Base = Class {
    .value = Str;
}

C = Inherit Base, Additional := {
    .value = Int # ERR
}
_ = C.new { .value = 10 }