changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > core / lisp/lib/obj/pkg.lisp

revision 224: fdea20982c25
parent 216: 97ad564cd68d
child 225: 58d7c3925687
     1.1--- a/lisp/lib/obj/pkg.lisp	Thu Mar 07 23:06:25 2024 -0500
     1.2+++ b/lisp/lib/obj/pkg.lisp	Sat Mar 09 23:01:06 2024 -0500
     1.3@@ -206,6 +206,24 @@
     1.4    :table-from-csv
     1.5    :table-from-tvs))
     1.6 
     1.7+(defpackage :obj/temperature
     1.8+  (:nicknames :temperature)
     1.9+  (:use :cl :std)
    1.10+  (:export :fahrenheit :celsius :kelvin :rankine))
    1.11+
    1.12+(defpackage :obj/direction
    1.13+  (:nicknames :direction)
    1.14+  (:use :cl :std)
    1.15+  (:export :up :down :left
    1.16+   :right :east :west :north
    1.17+   :north-east :north-west :south-east :south-west
    1.18+   :direction :angle))
    1.19+
    1.20+(defpackage :obj/shape
    1.21+  (:nicknames :shape)
    1.22+  (:use :cl :std)
    1.23+  (:export :circle :square :cube :sphere :triangle :pyramid))
    1.24+
    1.25 (defpackage :obj/db
    1.26   (:nicknames :db)
    1.27   (:use :cl :std :id :seq :sb-mop :sb-pcl)