dust/examples/while_loop.ds

7 lines
43 B
Plaintext
Raw Permalink Normal View History

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