dust/examples/while_loop.ds
2023-10-17 14:06:02 -04:00

7 lines
44 B
Plaintext

i = 0
while i < 10 {
(output i)
i += 1
}