dust/examples/for_loop.ds
2023-10-31 01:09:29 -04:00

7 lines
54 B
Plaintext

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