Why does leiningen make a directory hierarchy? Can I dispense with it?
问题 If I create a new clojure project with leiningen, it makes a directory tree like so: . |-- doc | `-- intro.md |-- project.clj |-- README.md |-- src | `-- hello_friend | `-- core.clj `-- test `-- hello_friend `-- core_test.clj Often, all I want is a single clojure file, and I want to use leiningen to handle libraries and start a repl. I've got two questions: (1) Is is possible to get leiningen to work properly with this structure . |-- project.clj `-- hello.clj which I'd greatly prefer. (In