cozo-clj

January 4, 2023 ยท View on GitHub

java

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.

Usage

(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.

Dependency

This library depends on io.github.cozodb/cozo-lib-java for its native bindings.