Files
jak-project/test/goalc/source_templates/variables/let.static.gc
T
2020-10-09 13:23:41 -04:00

7 lines
143 B
Common Lisp

(define-extern test-function (function int int int int int))
(test-function 1 2 3 4)
(let ((x 1)
(y (test-function 1 2 3 4))
(z 3))
y)