Files
Ink-Shader-Language/test/for_no_iter.ink
Niels Bross 603b625e21 Rename of files, improved for handling, add cb hints
- Rename Test to Ink as main file
- Support more errors for for loops.
- Add hints to cbs
2025-09-02 11:55:27 +02:00

7 lines
63 B
Plaintext

vertex main :: () {
x := 0.0;
for i : 0.. {
x += 2.0;
}
}