Files
Ink-Shader-Language/test/for_index_outside.ink

8 lines
66 B
Plaintext

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