Files
kyn/tests/loop.kyn
2025-10-06 11:57:49 +11:00

7 lines
102 B
Plaintext

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