guys, quick question. I have a lein project and 2 files in root source folder, core.clj
and client.clj
. :require
from REPL does not see client.clj
unless it’s :require
d from core.clj
. Is that expected? I just wanted to play with a separate helper file without touching core.clj
but it doesn’t work as is.
how are you requiring it in the repl?
(:require [test-api.test-client :as client])
ok, that works: (require '[test-api.test-client :as client])
newbie on the block, sorry :simple_smile: