Cipherd@lemmy.ml to Programmer Humor@programming.dev · 15 hours agofunctionslemmy.mlimagemessage-square53linkfedilinkarrow-up1385arrow-down15file-text
arrow-up1380arrow-down1imagefunctionslemmy.mlCipherd@lemmy.ml to Programmer Humor@programming.dev · 15 hours agomessage-square53linkfedilinkfile-text
minus-squareSlurpingPus@lemmy.worldlinkfedilinkarrow-up1·27 minutes 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.