Cipherd@lemmy.ml to Programmer Humor@programming.dev · 5 months agofunctionslemmy.mlimagemessage-square94linkfedilinkarrow-up1109arrow-down12file-textcross-posted to: programmerhumor@lemmy.ml
arrow-up1107arrow-down1imagefunctionslemmy.mlCipherd@lemmy.ml to Programmer Humor@programming.dev · 5 months agomessage-square94linkfedilinkfile-textcross-posted to: programmerhumor@lemmy.ml
minus-squarepet the cat, walk the dog@lemmy.worldlinkfedilinkarrow-up1·5 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.