dust/examples/while_loop.ds

7 lines
44 B
Plaintext
Raw Normal View History

2023-10-17 18:06:02 +00:00
i = 0
while i < 10 {
(output i)
i += 1
}