tvl-depot/configs/shared/.emacs.d/snippets/lisp-mode/function
William Carroll 3732ed4795 Define CL snippet for an untyped function
For the times when I'd like to be DyNaMiC.
2020-01-23 13:51:27 +00:00

7 lines
No EOL
83 B
Text

# -*- mode: snippet -*-
# name: Function
# key: fn
# --
(defun $1 ($2)
"$3"
$4)