1
0
forked from Mirror/wren
Files
wren/test/for/syntax.wren
Bob Nystrom 59bb7eec7a Remove some outdated TODOs.
They’re TODONE!
2014-02-13 08:38:44 -08:00

21 lines
290 B
Plaintext

// Single-expression body.
for (i in [1, 2, 3]) IO.print(i)
// expect: 1
// expect: 2
// expect: 3
// Block body.
for (i in [1, 2, 3]) {
IO.print(i)
}
// expect: 1
// expect: 2
// expect: 3
// Newline after "for".
for
(i in [1, 2, 3]) IO.print(i)
// expect: 1
// expect: 2
// expect: 3