I have a clj file using a certain namespace and I wish to define something belonging to another namespace, so I do :
(def other.namespace/name-of-something "value")
: but when I do this I get the result :
java.lang.Exception: Can't refer to qualified var that doesn't exist
Does anyone know why?