forked from Mirror/wren
9 lines
107 B
Plaintext
9 lines
107 B
Plaintext
class Foo {
|
|
method {
|
|
return "ok"
|
|
IO.write("bad")
|
|
}
|
|
}
|
|
|
|
IO.write((new Foo).method) // expect: ok
|