Files
jak-project/test/goalc/source_templates/arithmetic/subtract-1.static.gc
T
2020-10-08 00:05:01 -04:00

17 lines
208 B
Common Lisp

(defun negative ((a integer))
(- a)
)
(defun minus-two ((a integer))
(- a 2)
)
(defun sub-test ((a integer) (b integer))
(- 1 a b)
)
(let ((x (sub-test 1 (minus-two 7))))
(- 1 x (- -2))
)