A good place to start learning source code for Clojure?

I would like to study the official implementation of Clojure. Can anyone who is familiar with the code recommend where to start reading it? Are there certain parts that make it easier to understand everything else, or that are key to understanding how Clojure works?

+5
source share
2 answers

There are some great ideas that may be obvious until you are familiar with the implementation of LISP.

So, even if you look at the Clojure code, you can look at the code for the basic LISP implementation (there are heaps online - this is one of my favorites ).

, ​​ Christian Quinnec Lisp (LISP), LISP - .

Clojure - eval - .

+10

clojurescript .

clojure ,
core.clojure , , ( , )

+2

All Articles