Often I need to undefine a function in clojure. If I define something with defn how can I undefine it?
If you have:
(def x 42)
It might be useful to unbind the var:
(.unbindRoot #'x)
Now, if you try this
x
You get:
#