diff options
author | Leah Neukirchen <leah@vuxu.org> | 2021-12-01 14:19:04 +0100 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2021-12-01 14:19:04 +0100 |
commit | 51f7210420ca4d6b9e6da1c058340fc871885ca9 (patch) | |
tree | 8dfbe1b48090fa30d6db0c7fab84b7a2b877959e | |
download | adventofcode2021-51f7210420ca4d6b9e6da1c058340fc871885ca9.tar.gz adventofcode2021-51f7210420ca4d6b9e6da1c058340fc871885ca9.tar.xz adventofcode2021-51f7210420ca4d6b9e6da1c058340fc871885ca9.zip |
initial commit
-rw-r--r-- | README.md | 10 | ||||
-rw-r--r-- | deps.edn | 2 |
2 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..73861bb --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# Advent of Code 2021 (adventofcode.com) in BQN and Clojure. + +I'm using BQN c8b1598 and Clojure 1.11.0-alpha3. + +Solutions appear the day after---no spoilers. + + +To the extent possible under law, Leah Neukirchen has waived +all copyright and related or neighboring rights to this work. +http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/deps.edn b/deps.edn new file mode 100644 index 0000000..22490f9 --- /dev/null +++ b/deps.edn @@ -0,0 +1,2 @@ +{:deps + {org.clojure/clojure {:mvn/version "1.11.0-alpha3"}}} |