# HG changeset patch # User ellis # Date 1702955610 18000 # Node ID 0bdabb09f0056f93d92989c7d93d94d313c94acc # Parent 83a068855faab3af48ee289504508c3972b3801d init rdb/cl-simple-example diff -r 83a068855faa -r 0bdabb09f005 examples/rdb/cl-simple-example.lisp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/examples/rdb/cl-simple-example.lisp Mon Dec 18 22:13:30 2023 -0500 @@ -0,0 +1,13 @@ +;;; cl-simple-example.lisp --- Common Lisp port of rocksdb/example/c_simple_example.c + +;; https://github.com/facebook/rocksdb/blob/main/examples/c_simple_example.c + +;;; Code: +(defpackage :examples/rdb/cl-simple-example + (:nicknames :cl-simple-example) + (:use :cl :std :cli :rdb) + (:export :main)) + +(in-package :cl-simple-example) + +(defmain ())