An open API service indexing awesome lists of open source software.

https://github.com/codekeyz/learn-clojure

Learning clojure for shege reasons. It's fun, code looks simple & concise.
https://github.com/codekeyz/learn-clojure

Last synced: 2 months ago
JSON representation

Learning clojure for shege reasons. It's fun, code looks simple & concise.

Awesome Lists containing this project

README

          

# Exercism's Clojure Track

## Project Structure

Clojure exercises in exercism support the two most common tools for dependency management and testing, [leiningen](http://leiningen.org/) and the [Clojure CLI](https://clojure.org/guides/deps_and_cli).

### Running tests using the Clojure CLI

```
$ clj -X:test
```

### Running tests using Leiningen

```
$ 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.org/languages/clojure).