forked from Mirror/wren
7 lines
79 B
Plaintext
7 lines
79 B
Plaintext
var f = fn {
|
|
return "ok"
|
|
IO.print("bad")
|
|
}
|
|
|
|
IO.print(f.call) // expect: ok
|