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

9 lines
105 B
Io
Raw Permalink Normal View History

2025-05-10 21:28:56 +10:00
let int myNum 1;
2025-05-11 13:55:52 +10:00
while myNum != 1000 {
2025-05-10 21:28:56 +10:00
println myNum;
myNum = myNum + 1;
}
2025-05-11 13:55:52 +10:00
println "Finished";