about summary refs log tree commit diff
path: root/users/wpcarro/emacs/.emacs.d/snippets/lisp-mode/typed-function
blob: a3c236821e067d61dcef23d253e59a660440f04a (plain) (blame)
1
2
3
4
5
6
7
8
# -*- mode: snippet -*-
# name: Typed function
# key: tfn
# --
(type $1 ($3) $4)
(defun $1 ($2)
  "$5"
  $6)