blob: 23b26176e1f5d8e38f7a514fdd7d6a8bd34e7139 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# c199
The Weekly Challenge — #199 — Tyler Wardhaugh
## Usage
Clojure ([installation instructions](https://clojure.org/guides/getting_started#_clojure_installer_and_cli_tools)) required for `clojure` commands; Babashka ([installation instructions](https://github.com/babashka/babashka#quickstart)) required for the `bb` commands.
Run Task #1:
$ clojure -M:t1 COLL
# ... or ...
$ bb run task-1 COLL
# Alternatively, to run it via Babashka:
$ bb run task-1-bb COLL
Run Task #2:
$ clojure -M:t2 X Y Z COLL
# ... or ...
$ bb run task-2 COLL
# Alternatively, to run it via Babashka:
$ bb run task-2-bb COLL
Run the project's tests (which are samples from the task descriptions):
$ clojure -T:build test
# ... or ...
$ bb run test
View available tasks Babashka can run:
$ bb tasks
## License
Copyright © 2023 Tyler Wardhaugh
Distributed under the Eclipse Public License version 1.0.
|