This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
Can anyone link me to the Clojure lexer/scanner? I want to see the implementation. I tried digging around in the Github source code but to no avail.
https://github.com/clojure/clojure/blob/master/src/jvm/clojure/lang/LispReader.java
🙌 1
This is the code that will read from a stream of chars into Clojure forms
you are welcome
not to forget https://github.com/clojure/tools.reader, which is used by CLJS. same thing, just implemented in clj(s) and not java