Reputation: 7327
Suppose we have a clojure function (defn some-func ...)
. How could one call this function from C?
Upvotes: 0
Views: 445
Reputation: 6298
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++?
Upvotes: 1