mirror of
https://github.com/open-goal/jak-project
synced 2026-06-05 03:08:40 -04:00
5 lines
70 B
Common Lisp
5 lines
70 B
Common Lisp
(defun product ((a integer) (b integer))
|
|
(* b a)
|
|
)
|
|
|
|
(product 4 -3) |