Files
Ink-Shader-Language/test/complicated_computation.shd
2024-06-09 21:34:23 +02:00

7 lines
86 B
Plaintext

vertex main :: () {
x : float = 5.0;
y : float = 3000.0;
z : float = y * y + x;
}