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

14 lines
194 B
Plaintext
Raw Normal View History

2013-12-24 21:04:11 -08:00
// Single-expression body.
2014-04-04 07:51:18 -07:00
for (i in [1]) IO.print(i)
2013-12-24 21:04:11 -08:00
// expect: 1
// Block body.
2014-04-04 07:51:18 -07:00
for (i in [1]) {
2014-01-05 12:27:12 -08:00
IO.print(i)
2013-12-24 21:04:11 -08:00
}
// expect: 1
2014-04-04 07:51:18 -07:00
// Newline after "in".
for (i in
[1]) IO.print(i)
// expect: 1