Added basic for i loops. Missing some breaking tests and more tests. Also want to add for each at some point and it_index.

This commit is contained in:
2025-08-30 22:58:51 +02:00
parent 14f8b20d5f
commit 94fc3a4dad
7 changed files with 116 additions and 2 deletions

6
test/for_i_loop.ink Normal file
View File

@@ -0,0 +1,6 @@
vertex main :: () {
x := 0;
for i : 0..10 {
x += 1.0;
}
}