Cipherd@lemmy.ml to Programmer Humor@programming.dev · 2 days agofunctionslemmy.mlimagemessage-square116fedilinkarrow-up1640arrow-down19file-textcross-posted to: programmerhumor@lemmy.ml
arrow-up1631arrow-down1imagefunctionslemmy.mlCipherd@lemmy.ml to Programmer Humor@programming.dev · 2 days agomessage-square116fedilinkfile-textcross-posted to: programmerhumor@lemmy.ml
minus-squareSlurpingPus@lemmy.worldlinkfedilinkarrow-up2·edit-21 day 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.