mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 14:18:42 +01:00
11 lines
122 B
Plaintext
11 lines
122 B
Plaintext
{
|
|
var local = "local"
|
|
class Foo {
|
|
method {
|
|
IO.write(local)
|
|
}
|
|
}
|
|
|
|
(new Foo).method // expect: local
|
|
}
|