jak-project/goal_src/test/test-nested-function-call.gc
water111 d56540f8c0
Add lambda and static objects (#30)
* 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
2020-09-12 13:11:42 -04:00

8 lines
88 B
Plaintext

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