An open API service indexing awesome lists of open source software.

https://github.com/benzap/djinn

Subset of clojure in clojure for portable and sandboxed execution
https://github.com/benzap/djinn

clojure clojurescript scripting

Last synced: 3 months ago
JSON representation

Subset of clojure in clojure for portable and sandboxed execution

Awesome Lists containing this project

README

        

# djinn - Subset of clojure as a scripting language

The answer to using a subset of clojure within a natively compiled
clojure application.

*djinn is early alpha, and is not fully functional*

## Example

```clojure

(require '[djinn.core :as djinn])

(djinn/eval
(def x 10)

(defn hello [x] (println "Hello " x "!") :done)

(hello "djinn")) ;; => :done
;; : Hello djinn!\n

```