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

12 lines
218 B
Common Lisp

(defun add-five-v2 ((a int32) (b int32) (c int32) (d int32) (e int32))
(let* ((total-1 a)
(also-d d)
(total-2 (+ total-1 b))
(total-3 (+ c total-2))
)
(+ total-3 e also-d)
)
)
(add-five 1 2 3 4 5)