1
0
forked from Mirror/wren
Files
wren/test/return/in_method.wren
Bob Nystrom 1e0401bfc1 Allow statement bodies for flow control.
This means this works now:

  if (foo) return bar
2013-12-24 10:27:48 -08:00

9 lines
107 B
Plaintext

class Foo {
method {
return "ok"
IO.write("bad")
}
}
IO.write((new Foo).method) // expect: ok