diff -r 0f678bfd8699 -r c6d0a37a046a examples/db/tao.lisp --- a/examples/db/tao.lisp Tue Dec 19 16:52:10 2023 -0500 +++ b/examples/db/tao.lisp Sun Dec 24 19:24:39 2023 -0500 @@ -1,13 +1,14 @@ -;;; tao.lisp --- Common Lisp implementation of the TAO data model +;;; examples/db/tao.lisp --- Common Lisp implementation of the TAO data model ;; https://research.facebook.com/publications/tao-facebooks-distributed-data-store-for-the-social-graph/ +;; a minimal Lisp implementation of TAO. + ;;; Code: -(defpackage :examples/rdb/tao - (:nicknames :tao) +(defpackage :examples/tao (:use :cl :std :cli :rdb) (:export :main)) -(in-package :tao) +(in-package :examples/tao) (defmain ())