1 # -*- mode: snippet -*-
2 # name: defun
3 # key: def
4 # --
5 (defun ${1:function-name} (${2:arguments})
6 "${3:Docstring: Indicate in imperitave voice what the function does.
7 Second and subsequent lines must have nil indentation to preserve
8 formatting in }"
9 $0)