Cipherd@lemmy.ml to Programmer Humor@programming.dev · 2 months agofunctionslemmy.mlimagemessage-square119fedilinkarrow-up1664arrow-down19file-textcross-posted to: [email protected]
arrow-up1655arrow-down1imagefunctionslemmy.mlCipherd@lemmy.ml to Programmer Humor@programming.dev · 2 months agomessage-square119fedilinkfile-textcross-posted to: [email protected]
minus-square[object Object]@lemmy.worldlinkfedilinkarrow-up2·edit-22 months 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.