RosettaCodeData/Task/Comments/Emacs-Lisp/comments-3.el

4 lines
124 B
EmacsLisp
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
(defun subtract-second-from-first (x y)
"This function subtracts its second argument from its first argument."
(- y x))