mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-16 20:28:04 +01:00
11 lines
155 B
Plaintext
11 lines
155 B
Plaintext
class Foo {
|
|
static test {
|
|
IO.print(this == Foo) // expect: true
|
|
IO.print(this.bar) // expect: bar
|
|
}
|
|
|
|
static bar { return "bar" }
|
|
}
|
|
|
|
Foo.test
|