Clojure can't find .clj in local directory, . and ./classes on CLASSPATH

后端 未结 5 1364
抹茶落季
抹茶落季 2020-12-05 03:13

When I evaluate (use \'hello) to load hello.clj, the REPL complains with the following error:

java.io.FileNotFoundException: Could not locate hello__init.cla         


        
5条回答
  •  暖寄归人
    2020-12-05 04:07

    Does hello.clj contain a (ns some-namespace) statement? If so, then same_namespace is appended to the each element of the CLASSPATH before looking for hello.clj

提交回复
热议问题