dust/examples/for_loop.ds
2023-10-17 16:21:59 -04:00

9 lines
69 B
Plaintext

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