Brian Beckman

Results 63 comments of Brian Beckman

Clojure names can be in Unicode. I use Greek to create symbols that won't collide with user symbols by convention.

https://clojure.org/reference/reader https://stackoverflow.com/questions/3902813/is-there-a-language-spec-for-clojure no other written material. It's an observed fact that Unicode Greek is ok https://github.com/clojure/clojure/blob/master/src/jvm/clojure/lang/LispReader.java

Workaround requires TWO things: manually interpolating the `{...}` references AND removing the `f` from `fr`. The following works in LPython: ```python hex_pat : str = r'-?0[xX][0-9a-fA-F]+' oct_pat : str =...