changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / examples/db/tao.lisp

changeset 35: f54f7cc7458b
child: c6d0a37a046a
author: ellis <ellis@rwest.io>
date: Tue, 19 Dec 2023 16:46:55 -0500
permissions: -rw-r--r--
description: cl-simple-example implemented, init db/tao.lisp
1 ;;; tao.lisp --- Common Lisp implementation of the TAO data model
2 
3 ;; https://research.facebook.com/publications/tao-facebooks-distributed-data-store-for-the-social-graph/
4 
5 ;;; Code:
6 (defpackage :examples/rdb/tao
7  (:nicknames :tao)
8  (:use :cl :std :cli :rdb)
9  (:export :main))
10 
11 (in-package :tao)
12 
13 (defmain ())