mirror of
https://github.com/open-goal/jak-project
synced 2026-05-28 00:16:20 -04:00
d56540f8c0
* add some more tests for let * support static strings * add function calling * add prints for windows debgu * one test only * try swapping r14 and r15 in windows * swap back * disable defun for now * fix massive bug * fix formatting
8 lines
88 B
Common Lisp
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) |