Skip to content

Instantly share code, notes, and snippets.

View mitch-kyle's full-sized avatar

Mitch Kyle mitch-kyle

  • New Brunswick, Canada
View GitHub Profile
@freakhill
freakhill / user-reader-dispatch-macro.clj
Created January 22, 2020 13:10
because i was curious, also keywords not supporting spaces is puzzling, why?
(ns keyword-reader-macro.core
(:import [clojure.lang LispReader LispReader$StringReader]))
(defn field []
(.getDeclaredField LispReader "dispatchMacros"))
(defn dispatch-macros []
(.get (field) LispReader))
(defn dispatch-reader!