for statements (ch23)

This commit is contained in:
2024-08-27 15:13:21 +02:00
parent d67c99ffe5
commit 95c4e44dbb
3 changed files with 54 additions and 1 deletions

3
samples/ch23_for.lox Normal file
View File

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