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

5 lines
123 B
Common Lisp

(defun add-five ((a integer) (b integer) (c integer) (d integer) (e integer))
(+ c d (+ e a) b)
)
(add-five 1 2 3 4 5)