RosettaCodeData/Task/Function-definition/Emacs-Lisp/function-definition-2.el

4 lines
68 B
EmacsLisp
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
(defun multiply (x y)
"Return the product of X and Y."
(* x y))