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.
- Host: GitHub
- URL: https://github.com/codekeyz/learn-clojure
- Owner: codekeyz
- Created: 2023-10-12T13:12:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-14T18:42:23.000Z (over 2 years ago)
- Last Synced: 2024-12-28T16:35:20.397Z (about 1 year ago)
- Language: Clojure
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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).