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:
6
test/for_i_loop.ink
Normal file
6
test/for_i_loop.ink
Normal file
@@ -0,0 +1,6 @@
|
||||
vertex main :: () {
|
||||
x := 0;
|
||||
for i : 0..10 {
|
||||
x += 1.0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user