Closed didibus closed 2 years ago
It seems let is treated special by RCF:
(defmacro let [bindings & exprs] 100) (tests (! (let [a 1] a)) % := 100) ;; Test Fail!
When I macro-expand, I see that RCF uses clojure.core/let instead of the dedefined let.
clojure.core/let
Thank you for the report. This is a bug. I understand the issue and have an idea of how to fix it. I’ll keep you posted.
Related to #40
It seems let is treated special by RCF:
When I macro-expand, I see that RCF uses
clojure.core/let
instead of the dedefined let.