我在 clojure 文件中有以下内容:
(ns helloworld
(:gen-class
:main -main))
(defn hello-world-fn []
(println "Hello World"))
(defn -main [& args]
(eval (read-string "(hello-world-fn)")))
我正在运行它
lein run helloworld
我收到以下错误:
Exception in thread "main" java.lang.RuntimeException: Unable to resolve symbol:
helloworld in this context, compiling:(helloworld.clj:12)
ns-resolve
我有一种感觉,我需要与or做点什么,resolve
但我没有取得任何成功。我在主要功能中尝试了以下内容:
(let [call-string (read-string "(hello-world-fn)")
func (resolve (symbol (first call-string)))
args (rest call-string)]
(apply func args))
没有成功。
有人可以(a)指出我正确的方向吗?(b) 准确解释发生这种情况时 Clojure 阅读器中发生了什么?