checkpoint.. nothing to see here.
[clinton/lisp-on-lines.git] / src / packages.lisp
... / ...
CommitLineData
1(defpackage #:lisp-on-lines
2 (:use
3 :common-lisp
4 #:contextl
5 #:closer-mop
6 #:alexandria)
7 (:nicknames #:lol)
8 (:export
9
10;; Descriptions
11 #:find-description
12 #:define-description
13 #:with-active-descriptions
14
15 ;; Displays
16 #:define-display
17 #:display
18 #:display-using-description
19 #:*display*
20 #:*object*
21
22 ;; Attributes
23 #:find-attribute
24 #:attribute
25 #:attributes
26 #:attribute-label
27 #:attribute-function
28 #:attribute-value))
29
30