3 lines
124 B
Common Lisp
3 lines
124 B
Common Lisp
(defun subtract-second-from-first (x y)
|
|
"This function subtracts its second argument from its first argument."
|
|
(- y x))
|