Location Clojures do form

I am trying to find where the form is defined, looking in clojure.core, it does not exist. I would like to find out how to translate instructions in Java?

+5
source share
2 answers

See Compiler.java, line 4662 , to see how do is handled :

+11
source

The form dois a special form and as such is not implemented in clojure. Browse the class to see how the clojure compiler handles it. clojure.lang.Compiler

+7
source

All Articles