I'm trying to write a helloworld with clojure. I'm using leinengen with emacs and swank-clojure.
Here's what my src/hello.clj
contains:
(ns hello)
(defn hello []
(println "Hello World"))
When I clojure-jack-in
and C-c C-c
over the function, I get:
No such namespace: hello
[Thrown class java.lang.Exception]
What am I doing wrong?