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

9 lines
113 B
Plaintext

void vs_main()
{
float x = 2;
float y = 5;
float z = 10;
float w = x * y + y * z - x / y * x;
}