mirror of
https://github.com/open-goal/jak-project
synced 2026-06-25 18:14:34 -04:00
7 lines
143 B
Common Lisp
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) |