RosettaCodeData/Task/Comments/Emacs-Lisp/comments-3.el
2026-04-30 12:34:36 -04:00

3 lines
124 B
EmacsLisp

(defun subtract-second-from-first (x y)
"This function subtracts its second argument from its first argument."
(- y x))