4 lines
68 B
Text
4 lines
68 B
Text
|
|
(defun multiply (x y)
|
||
|
|
"Return the product of X and Y."
|
||
|
|
(* x y))
|