Is there anyway to define a new macro under the name def in Clojure? I defmacroed a new one after trying to :refer-clojure :exclude the original, but it used the built-in definition anyway.
I was trying to enable Scheme-style function definitions ((def (f x y) ...) as (defn f [x y] ...)) using the following code.
(defmacro def
[ id & others ]
(if (list? id)
`(defn ~(first id) [~@(rest id)] ~@others)
`(def ~id ~@others)))