Clojure bindings for CozoDb.
This document describes how to set up Cozo for use in Clojure. To learn how to use CozoDB (CozoScript), read the docs.
(in-ns 'cozo-clj.core)
(def db (open-db))
(println (query db "?[] <- [[1,2,3]]"))
(close db)
For more information, see the built-in docs.
This library depends on io.github.cozodb/cozo-lib-java
for its native bindings.