When I try to run this code in eclipse:
(ns cl1
(def s 1)
(print s)
)
I get
java.lang.Exception: No such var: clojure.core/def (clojure.clj:1)
I'm a complete clojure newbie, but I think that the above code should create the symbol s, and then print what s is equivalent to to the screen (1).