Jumping Back and Forth 23

This commit is contained in:
nazrin 2025-06-08 05:32:04 +00:00
parent 98e7f950cf
commit 8717d37445
13 changed files with 299 additions and 30 deletions

9
test/for.lox Normal file
View file

@ -0,0 +1,9 @@
for(var x = 1; x < 3; x = x + 1){
print x;
}
for(var x = 1; x <= 3; x = x + 1){
print x;
}