mirror of
https://github.com/open-goal/jak-project
synced 2026-07-11 15:28:58 -04:00
27f0a7ca44
* refactor tests and analysis passes * identity test working * combine test categories with only a few cases * more fixes
10 lines
92 B
Common Lisp
10 lines
92 B
Common Lisp
(desfun square (x)
|
|
(* x x)
|
|
)
|
|
|
|
|
|
(defmacro call-square (x)
|
|
(square x)
|
|
)
|
|
|
|
(call-square 2) |