Files
Ink/test/for_i_loop.ink

7 lines
63 B
Plaintext

vertex main :: () {
x := 0;
for i : 0..10 {
x += 1.0;
}
}