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
E.g. start REPL and try to eval plus form in a file like this:
(ns abc)
(+ 1 2)
Command send to nREPL will have {"ns": "abc"}, but abc has not been evaluated yet so it doesn’t exist. This causes an error, even though code could be evaluated just fine in user namespace. Or, alternatively, abc might be required first, before evaluation.
The text was updated successfully, but these errors were encountered:
E.g. start REPL and try to eval plus form in a file like this:
Command send to nREPL will have
{"ns": "abc"}
, but abc has not been evaluated yet so it doesn’t exist. This causes an error, even though code could be evaluated just fine inuser
namespace. Or, alternatively,abc
might be required first, before evaluation.The text was updated successfully, but these errors were encountered: