7 lines
102 B
Plaintext
7 lines
102 B
Plaintext
let counter = 0
|
|
|
|
while compare $counter <= 10000 {
|
|
println $counter
|
|
counter = (math 1 + $counter)
|
|
}
|