Files
jak-project/test/goalc/source_templates/functions/nested-call.static.gc
T
2020-10-08 00:05:01 -04:00

8 lines
88 B
Common Lisp

(defun r2 (one two three)
two)
(defun r1 (one two three)
one)
(r2 1 (r1 2 3 4) 5)