Files
kyn/tests/loop.kyn
2025-10-01 13:43:37 +10:00

7 lines
101 B
Plaintext

let counter = 0
while compare $counter <= 1000 {
println $counter
counter = (math 1 + $counter)
}