Files
wren/test/language/continue/in_function_in_loop.wren
Alan Stagner 55b926410d Add continue statement (#822)
Note that documentation is still required.
2020-12-03 08:30:36 -08:00

7 lines
92 B
Plaintext

var done = false
while (!done) {
Fn.new {
continue // expect error
}
done = true
}