You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get compile errors about undeclared vars, declared vars end up in "user" namespace
Steps to reproduce the problem
Create a namespace with space in the namespace declaration, like this:
(ns foo) ; space as the first character
(defn bar [] 1)
eval defun at point for the function "bar". I can instantly see the foo was declared in "user" namespace. I expected it to end up in "foo" namespace. If I require stuff in the namespace declarations, I can't refer to the declarations because I get compile errors