Files
jak-project/test/goalc/source_templates/macros/desfun.static.gc
T
2020-10-08 00:05:01 -04:00

10 lines
92 B
Common Lisp

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