(hash-map (gensym "A") 1 (gensym "B") 2) (hash-map (gensym) 1 (gensym) 2) {(gensym "A") 1 (gensym "B") 2} {(gensym) 1 (gensym) 2}Hint (hover to reveal): Clojure works by first reading the code into a Clojure data structure and then evaluating it. What does the Clojure reader do when it encounters a map literal? What does
(read-string "{(:a) 1 (:a) 2}")
do?