Files
jak-project/test/goalc/source_templates/control-statements/desfun.static.gc
T
water111 27f0a7ca44 [Decompiler] Begin expression conversion, rearrange tests (#209)
* refactor tests and analysis passes

* identity test working

* combine test categories with only a few cases

* more fixes
2021-01-23 16:32:56 -05:00

10 lines
92 B
Common Lisp

(desfun square (x)
(* x x)
)
(defmacro call-square (x)
(square x)
)
(call-square 2)