Clojure Insert: classpath issue (question noob)

I am stuck with “Programming Clojure” on page 37 on a Windows 7 machine. After loading the "examples" into the "C: / clojure" directory, I typed:

user> (require 'examples.introduction)

and i got

; Evaluation interrupted.

java.io.FileNotFoundException: could not find examples / Introduction__init.class or examples / introduction.clj on the class path: (NO_SOURCE_FILE: 0)

My .emacs file is as follows:

(setq swank- clojure -extra-classpaths (list "C: / clojure"))

Files in C: / Clojure exist (I checked three times)

Any help would be appreciated.

+5
source share
2 answers

! .emacs - "classpath" "s" ):

(setq swank-clojure-classpath
        (list "c:/Clojure"))

Shawn Hoover , . ( !)

+1

(setq swank-clojure-extra-classpaths ("C:/Clojure"))
0

All Articles