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