zongors-reality-engine/test/add.lisp

6 lines
93 B
Common Lisp

(defun add (int a int b)
(return (+ a b)))
(let ((sum (add 1 1)))
(print (itos sum)))