Fix loops

This commit is contained in:
2025-05-11 13:55:52 +10:00
parent fe3002e661
commit ae858894b9
2 changed files with 22 additions and 17 deletions

View File

@@ -1,8 +1,8 @@
let int myNum 1;
while myNum != 1001 {
while myNum != 1000 {
println myNum;
myNum = myNum + 1;
}
println "The loop has ended";
println "Finished";