Files
Ink-Shader-Language/test/function_call.ink

8 lines
63 B
Plaintext

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