mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-29 10:40:03 +08:00
15 lines
182 B
Plaintext
Vendored
15 lines
182 B
Plaintext
Vendored
class A {
|
|
var a := 12
|
|
|
|
method method() : int = 1
|
|
}
|
|
|
|
type B = class extends A {
|
|
var b := 27
|
|
|
|
method another_method() = (
|
|
print("called");
|
|
self.b + self.method()
|
|
)
|
|
}
|