Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 1.23 KB

README.md

File metadata and controls

42 lines (28 loc) · 1.23 KB

Clojure Exercises

A place to keep track of problems/solutions in Clojure.

The problems are from the 4clojure.

Notes

Handy clojure.core functions to keep in mind:

Workflow

  1. Get just (brew install just)
  2. Run tests continuously in --watch mode
    $ just watch
  3. Write empty solution method ➡️ write the test(s) ➡️ implement solution 🔁
    # e.g. create q017.clj and q017_test.clj
    $ just create 017

Linting / formatting

# lint code
$ just lint

# format code
$ just format

TODO

  • Lint with babashka for quicker startup time?