Cipherd@lemmy.ml to Programmer Humor@programming.dev · 11 days agofunctionslemmy.mlimagemessage-square95fedilinkarrow-up1633arrow-down19file-textcross-posted to: [email protected]
arrow-up1624arrow-down1imagefunctionslemmy.mlCipherd@lemmy.ml to Programmer Humor@programming.dev · 11 days agomessage-square95fedilinkfile-textcross-posted to: [email protected]
minus-square[object Object]@lemmy.worldlinkfedilinkarrow-up1·edit-211 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.