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

21 lines
226 B
Plaintext

for (i in 0..5) {
{
var a = "a"
{
var b = "b"
{
var c = "c"
if (i == 1) continue
}
}
}
System.print(i)
}
// expect: 0
// expect: 2
// expect: 3
// expect: 4
// expect: 5