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