forked from Mirror/wren
10 lines
117 B
Plaintext
10 lines
117 B
Plaintext
class Foo {
|
|
construct new() {
|
|
IO.print("Foo.new()")
|
|
}
|
|
}
|
|
|
|
class Bar is Foo {}
|
|
|
|
Bar.new() // expect: Foo.new()
|