Files
jak-project/test/old_goal_tests/tests/test-nested-function-call.gc
T
2020-08-22 22:32:18 -04:00

15 lines
181 B
Common Lisp

;-*-Scheme-*-
;; this is mostly to test that the coloring works.
(test-setup 2 #f)
(defun r2 (one two three)
two)
(defun r1 (one two three)
one)
(r2 1 (r1 2 3 4) 5)