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

8 lines
124 B
Plaintext

vertex main :: () {
x : float = 2.0;
y : float = 5.0;
z : float = 10.0;
w : float = (x * y) + y * (z - x / (y * x));
}