I was wondering if there is any clojure code or macros that does not work when embedded within a clojure proxy for java code, eg:
(proxy [Some Java Interface] []
(some Java Method [args]
...
Clojure code
...
)
)
Or, can I only embed calls to Java functions within the proxy?