changelog shortlog graph tags branches files raw help

Mercurial > demo / changeset: init rdb/cl-simple-example

changeset 34: 0bdabb09f005
parent 33: 83a068855faa
child 35: f54f7cc7458b
author: ellis <ellis@rwest.io>
date: Mon, 18 Dec 2023 22:13:30 -0500
files: examples/rdb/cl-simple-example.lisp
description: init rdb/cl-simple-example
     1.1--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2+++ b/examples/rdb/cl-simple-example.lisp	Mon Dec 18 22:13:30 2023 -0500
     1.3@@ -0,0 +1,13 @@
     1.4+;;; cl-simple-example.lisp --- Common Lisp port of rocksdb/example/c_simple_example.c
     1.5+
     1.6+;; https://github.com/facebook/rocksdb/blob/main/examples/c_simple_example.c
     1.7+
     1.8+;;; Code:
     1.9+(defpackage :examples/rdb/cl-simple-example
    1.10+  (:nicknames :cl-simple-example)
    1.11+  (:use :cl :std :cli :rdb)
    1.12+  (:export :main))
    1.13+
    1.14+(in-package :cl-simple-example)
    1.15+
    1.16+(defmain ())