"tokens" are not something the clojure reader works with: it does not have separate lex / parse phases, such as languages ββwith more complex grammars. Of course, you can write your own grammar for clojure forms, call the token (a OPEN_PAREN, etc., but there is no built-in support.
source
share