Files
Toy/scripts/looping.toy
Kayne Ruse 6cc331d462 While is working but untested, read more
* TODO: break and continue keywords need to be implemented
* TODO: while-then needs testing
* Fixed the parser not liking zero-length strings
2024-11-26 14:48:24 +11:00

10 lines
74 B
Plaintext

var a: int = 0;
while(a < 10) {
print a;
a += 1;
}
print "Finished";