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