我刚开始Web Development with Clojure,但我遇到了一个非常简单的问题。我在:main myapp.core/foo
project.clj
(defproject myapp "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]]
;; this will set foo as the main function
:main myapp.core/foo)
但是当我运行lein
时,我收到此错误:
C:\Users\a>lein run First
No :main namespace specified in project.clj.
C:\Users\a>
我做错了什么?
答案 0 :(得分:18)
First
是一个传递给C:\Users\a\project.clj
中指定的命名空间的main函数的参数。你想要C:\Users\a\First\project.clj
吗?如果是,请先cd
进入该目录。