Add for-loop parsing

This commit is contained in:
Sofia 2026-04-28 01:35:39 +03:00
parent 52e43ea1e2
commit 6247bc91f6

3
test.c
View File

@ -51,5 +51,8 @@ int main() {
twod_array[0][0] = 50;
printf("2d array: %d!\n", twod_array[0][0]);
for (int counter = 0; counter < 10; counter++)
printf("counter: %d\n", counter);
return 0;
}