CLASSPATH has "/ Users / smcho / Desktop / clojure" as one of its paths, and this directory has the hello.clj file.
Starting clojure and starting (require 'hello) gives this error message.
java.io.FileNotFoundException: Could not locate hello__init.class or hello.clj on classpath: (NO_SOURCE_FILE: 0)
When I change the directory to "/Users/.../ clojure" and run the same thing (require "hello"), there is no problem .. is on CLASSPATH.
Performance
java -cp /Users/smcho/bin/jar/clojure.jar:/Users/smcho/Desktop/clojure clojure.lang.Repl
also works.
Why can't clojure find the source in CLASSPATH?
source share