mirror of
https://github.com/MorizzG/rlox.git
synced 2025-12-06 04:12:42 +00:00
14 lines
158 B
Lox
14 lines
158 B
Lox
class A {
|
|
init(param) {
|
|
this.field = param;
|
|
}
|
|
|
|
test() {
|
|
print this.field;
|
|
}
|
|
}
|
|
|
|
class B < A {}
|
|
|
|
var b = B("value");
|
|
b.test(); // expect: value
|