1
0
forked from Mirror/wren
Files
wren/test/return/in_function.wren
2014-01-12 19:37:11 -08:00

7 lines
79 B
Plaintext

var f = fn {
return "ok"
IO.print("bad")
}
IO.print(f.call) // expect: ok