I would like to define my own reader macro in clojure:
(read-string \"ßfoo\") => (some_func :foo)
Is it possible?
Currently, Clojure doesn't allow to create user defined reader macros. This might/might not change in the future.