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