jak-project/goal_src/test/test-string-constant-1.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

5 lines
125 B
Common Lisp

(define-extern inspect (function object object))
(inspect "this is a string")
(define x "this is also a string")
(inspect x)