George
George

Reputation: 7327

How to Call a Clojure Function from C?

Suppose we have a clojure function (defn some-func ...). How could one call this function from C?

Upvotes: 0

Views: 445

Answers (1)

sg7
sg7

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

Related Questions