문제

I just started Web Development with Clojure but I am stuck with a real simple problem. I have :main myapp.core/foo in the 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)

but when I run lein I get this error:

C:\Users\a>lein run First
No :main namespace specified in project.clj.
C:\Users\a>

What am I doing wrong?

도움이 되었습니까?

해결책

First is an argument being passed to the main function of the namespace specified in C:\Users\a\project.clj. Did you want C:\Users\a\First\project.clj? If so, cd into that directory first.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top