#name : function template
#contributor : Xah Lee
# --
(defun $1 ()
  "thisandthat."
  (interactive)
  (let (var1)
    (setq var1 some)
    $0
  )
)