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

8 lines
63 B
Plaintext

foo :: () -> int {
return 4;
}
vertex main :: () {
foo();
}