How can I run eval in ClojureScript with access to the namespace that is calling the eval?
问题 I have a library of functions which I want to let users play with in the browser. So I want to set up a situation like this : I'm developing with figwheel and devcards. In the main core.cljs I require various functions from my library, so they're all in scope. Now I want to let the user enter some code which calls that library. I see how I can run that code with eval, but I can't see how to make my library functions visible to the code being evaled. And I'm confused by most of the