mirror of
https://github.com/open-goal/jak-project
synced 2026-06-25 10:12:14 -04:00
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) |