Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
marvel
GitHub Repository: marvel/qnf
Path: blob/master/elisp/emacs-for-python/yasnippet/snippets/emacs-lisp-mode/defun
990 views
#name : function template
#contributor : Xah Lee
# --
(defun $1 ()
  "thisandthat."
  (interactive)
  (let (var1)
    (setq var1 some)
    $0
  )
)