How can i import a function in closure? Suppose i have two files:
test.clj
test2.clj
I want to use the function from test2 in test.
I have tried the following in test, but this is not working:
(namespace user :require test2)
How am a able to import a function in another file?
Basically want to do `from lib import f in python