feat: add while loops, break and continue statements

This commit is contained in:
2026-04-21 23:53:41 +02:00
parent 68ec14e541
commit 92eefb5cf1
10 changed files with 397 additions and 9 deletions
+6
View File
@@ -107,4 +107,10 @@ run_test "tests/let_stmt.src" 30
# Test assignments and multi-assignments
run_test "tests/assign.src" 42
# Test while loops
run_test "tests/fibonacci.src" 55
# Test break and continue inside while loops
run_test "tests/while_break_continue.src" 16
echo "All end-to-end tests passed!"