This repository has been archived on 2025-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
Files
iodine/examples/loop.io
2025-05-11 13:55:52 +10:00

9 lines
105 B
Io

let int myNum 1;
while myNum != 1000 {
println myNum;
myNum = myNum + 1;
}
println "Finished";