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

13 lines
168 B
Plaintext

(program
(fun foo -> int
[]
(return 5))
(fun bar -> float
[]
(return (* 1235 500)))
(fun vertex vs_main
[]
(:= x int (foo))
(:= y float (bar))))