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