mirror of
https://github.com/liuk7071/ChonkyStation.git
synced 2025-04-02 10:52:38 -04:00
7 lines
76 B
Common Lisp
7 lines
76 B
Common Lisp
(+ 2 2)
|
|
(defun negate (X)
|
|
"Negate a number"
|
|
(- X))
|
|
|
|
(negate 5)
|
|
|