jak-project/goal_src/test/test-return-value-of-if.gc
water111 cee6c21603
Add basic features for types and objects (#52)
* started adding simple functions in gcommon

* more tests and features

* more tests, debug windows

* debug prints for windows

* back up some regs for windows

* remove debugging prints
2020-09-19 13:22:14 -04:00

7 lines
111 B
Common Lisp

(let ((x (if (> 1 2) "a string!"))
(y (if (> 2 1) 123)))
(if x
(format #t "failure!")
)
y
)