jak-project/test/goalc/source_templates/arithmetic/multiply.static.gc
2020-10-08 00:05:01 -04:00

5 lines
70 B
Common Lisp

(defun product ((a integer) (b integer))
(* b a)
)
(product 4 -3)