Files
kyn/tests/loop.kyn

7 lines
102 B
Plaintext
Raw Normal View History

2025-10-01 13:43:08 +10:00
let counter = 0
2025-10-06 11:57:49 +11:00
while compare $counter <= 10000 {
2025-10-01 13:43:08 +10:00
println $counter
counter = (math 1 + $counter)
}