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

14 lines
206 B
Plaintext
Raw Normal View History

2013-12-24 21:04:11 -08:00
// Single-expression body.
2015-09-15 07:46:09 -07:00
for (i in [1]) System.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]) {
2015-09-15 07:46:09 -07:00
System.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
2015-09-15 07:46:09 -07:00
[1]) System.print(i)
2014-04-04 07:51:18 -07:00
// expect: 1