1
0
forked from Mirror/wren
Files
wren/test/return/in_function.wren
2014-04-02 19:41:53 -07:00

7 lines
83 B
Plaintext

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