Files
wren/test/language/for/syntax.wren

14 lines
206 B
Plaintext
Raw Normal View History

2013-12-24 21:04:11 -08:00
// Single-expression body.
for (i in [1]) System.print(i)
2013-12-24 21:04:11 -08:00
// expect: 1
// Block body.
for (i in [1]) {
System.print(i)
2013-12-24 21:04:11 -08:00
}
// expect: 1
// Newline after "in".
for (i in
[1]) System.print(i)
// expect: 1