Replies: 1 comment 2 replies
-
Hi @qubit55, You should be able to Currently, Basilisp does not yet have a feature like the Alternatively, you can:
I hope this helps! update1: added |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I'm trying to experiment with the REPL and having some namespacing issues. For example, below is the structure of my project:
The content of the core.lpy:
The content of the pkg.lpy:
When I send
to the REPL, everything works and I can switch to "myproject.pkg" namespace from within the REPL to call foo or (myproject.pkg/foo 1) directly from within the "user" namespace.
Now, when I send the following to the REPL:
I get ImportError: Basilisp namespace 'myproject.pkg' not found.
My understanding is that the above workflow should work in Clojure. So my question is how do I create namespaces with dependencies on other namespaces at the REPL?
Beta Was this translation helpful? Give feedback.
All reactions