Sha256: b23fbf3f89842348d851eda99bc9147bcd1c4ab68b8acf57194bccb16d0316ea
Contents?: true
Size: 859 Bytes
Versions: 396
Compression:
Stored size: 859 Bytes
Contents
### Project Structure Clojure exercises in exercism use [leiningen](http://leiningen.org/) to configure and run your code and use [leiningen standard directory structure](https://github.com/technomancy/leiningen/blob/master/doc/TUTORIAL.md#directory-layout). You will find a test file named `hello_world_test.clj` inside `test` directory. Write your code in `src/hello_world.clj`. It should use the namespace `hello-world` so that tests can pick it up. ### Running tests Run the tests using `lein test` command and make them pass: ``` $ lein test lein test hello-world-test Ran 3 tests containing 3 assertions. 0 failures, 0 errors. ``` Then submit the exercise using: ``` $ exercism submit src/hello_world.clj ``` For more detailed instructions and learning resources refer [exercism's clojure language page](http://exercism.io/languages/clojure).
Version data entries
396 entries across 396 versions & 1 rubygems