tvl-depot/users/wpcarro/emacs/.emacs.d/snippets/lisp-mode/defpackage

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
160 B
Text
Raw Normal View History

# -*- mode: snippet -*-
# name: Define package
# key: defp
# --
(in-package #:cl-user)
(defpackage #:$1
(:documentation "$2")
(:use #:cl))
(in-package #:$1)