Fork me on GitHub
#admin-announcements
<
2015-09-27
>
suhinini07:09:14

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 :required 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.

afhammad07:09:02

how are you requiring it in the repl?

suhinini08:09:39

(:require [test-api.test-client :as client])

suhinini08:09:34

ok, that works: (require '[test-api.test-client :as client])

suhinini08:09:40

newbie on the block, sorry simple_smile