Is possible to overwrite the map constructor in sci ?
I tried to use :bindings {'hash-map (fn [& args] my-custom-map)}. It works for (hash-map :a :b), as expected, but not for {:a :b}
@souenzzo To override clojure core functions you write {:namespaces {'clojure.core {'hash-map custom-hash-map}}} - there is currently no way to override map literals