mirror of
https://github.com/erg-lang/erg.git
synced 2025-12-23 05:36:48 +00:00
9 lines
134 B
Python
9 lines
134 B
Python
@Inheritable
|
|
Base = Class {
|
|
.value = Str;
|
|
}
|
|
|
|
C = Inherit Base, Additional := {
|
|
.value = Int # ERR
|
|
}
|
|
_ = C.new { .value = 10 }
|