Suppose we have a clojure function (defn some-func ...). How could one call this function from C?
1 Answer
C does not allow native clojure functions. But they can be implemented e.g: A Clojure implementation on top of C
For calling from C++ see: Can I call clojure code from C++?