interactive-window
interactive-window copied to clipboard
connect interactive window (repl) to entire project
Is there a way to navigate to a namespace and start using db or other server functions without having to include every dependency?
The Clojure repl allows you to call (in-ns 'my-db-namespace) and then I can call my database setup function. All dependencies are include when you navigate to the namespace. Currently, it looks like I have to include all .dlls when I am in a c# namespace. Is this feature possible? However, the Clojure repl compiles the program first before the interactive dev environment starts.
Thanks