Add missing file and fix initialzation
[clinton/lisp-on-lines.git] / src / packages.lisp
1 (defpackage #:lisp-on-lines
2 (:use
3 :common-lisp
4 #:contextl)
5 (:nicknames #:lol)
6 (:export
7
8 ;; Descriptions
9 #:find-description
10 #:define-description
11
12 ;; Displays
13 #:define-display
14 #:display
15 #:display-using-description
16 #:*display*
17 #:*object*
18
19 ;; Attributes
20 #:find-attribute
21 #:attribute-label
22 #:attribute-function
23 #:attribute-value))
24
25