d7c52e4e64
Since I'm new to the CL world, snippets are a useful note-taking analogue with the added benefit of potentially speeding up my workflow should the muscle-memory set.
9 lines
No EOL
160 B
Text
9 lines
No EOL
160 B
Text
# -*- mode: snippet -*-
|
|
# name: Define package
|
|
# key: defp
|
|
# --
|
|
(in-package #:cl-user)
|
|
(defpackage #:$1
|
|
(:documentation "$2")
|
|
(:use #:cl))
|
|
(in-package #:$1) |