1
0
dust/examples/for_loop.ds

7 lines
58 B
Plaintext

i = 0
for i in [1 2 3] {
i += 1
(output i)
}
(output i)