I'm having a boot-clj project with the below dependencies,
:dependencies '[[org.clojure/clojure "RELEASE"]
[adzerk/boot-test "RELEASE" :scope "test"]]
Under that project, I'm running boot repl
and trying to experiment with clojure.spec
.
As a first step, I tried importing the required dependency using
(require '[clojure.spec.alpha :as s])
While doing so, I'm getting the below error,
java.lang.IllegalStateException: Attempting to call unbound fn: #'clojure.core/ident?
java.lang.ExceptionInInitializerError:
What does it mean? And how to fix it?