Cipherd@lemmy.ml to Programmer Humor@programming.dev · 7 days agofunctionsimagemessage-square119linkfedilinkarrow-up1652arrow-down19file-text
arrow-up1643arrow-down1imagefunctionsCipherd@lemmy.ml to Programmer Humor@programming.dev · 7 days agomessage-square119linkfedilinkfile-text
minus-square[object Object]@lemmy.worldlinkfedilinkarrow-up2·6 days agoIn Emacs Lisp, you use one of these two: (defun funcname (arg1 arg2) (+ arg1 arg2)) (lambda (arg1 arg2) (+ arg1 arg2)) — with the latter typically being an argument to another function or macro.
In Emacs Lisp, you use one of these two:
(defun funcname (arg1 arg2) (+ arg1 arg2))(lambda (arg1 arg2) (+ arg1 arg2))— with the latter typically being an argument to another function or macro.