InterviewSolution
Saved Bookmarks
| 1. |
How Do I Create A Clojure Project? |
|
Answer» You can USE Leiningen to generate the SCAFFOLDING of a new Clojure application- lein new APP project_name Generating a project called “project-name” and it’s based on the “app” TEMPLATE. You can use Leiningen to generate the scaffolding of a new Clojure application- lein new app project_name Generating a project called “project-name” and it’s based on the “app” template. |
|