changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > demo / examples/db/tao.lisp

revision 37: c6d0a37a046a
parent 35: f54f7cc7458b
child 39: 1ef551e24009
     1.1--- a/examples/db/tao.lisp	Tue Dec 19 16:52:10 2023 -0500
     1.2+++ b/examples/db/tao.lisp	Sun Dec 24 19:24:39 2023 -0500
     1.3@@ -1,13 +1,14 @@
     1.4-;;; tao.lisp --- Common Lisp implementation of the TAO data model
     1.5+;;; examples/db/tao.lisp --- Common Lisp implementation of the TAO data model
     1.6 
     1.7 ;; https://research.facebook.com/publications/tao-facebooks-distributed-data-store-for-the-social-graph/
     1.8 
     1.9+;; a minimal Lisp implementation of TAO.
    1.10+
    1.11 ;;; Code:
    1.12-(defpackage :examples/rdb/tao
    1.13-  (:nicknames :tao)
    1.14+(defpackage :examples/tao
    1.15   (:use :cl :std :cli :rdb)
    1.16   (:export :main))
    1.17 
    1.18-(in-package :tao)
    1.19+(in-package :examples/tao)
    1.20 
    1.21 (defmain ())