https://github.com/billstclair/aoc-2021
Advent of Code 2021
https://github.com/billstclair/aoc-2021
Last synced: 4 months ago
JSON representation
Advent of Code 2021
- Host: GitHub
- URL: https://github.com/billstclair/aoc-2021
- Owner: billstclair
- Created: 2021-12-02T04:54:55.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-05T14:51:30.000Z (over 4 years ago)
- Last Synced: 2025-03-02T19:43:04.466Z (over 1 year ago)
- Language: Common Lisp
- Size: 34.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# aoc-2021
My solutions for [Advent of Code 2021](https://adventofcode.com/).
In [SBCL](http://www.sbcl.org/) or [CCL](https://clozure.com/), `(load "")` to run one of the solutions.
E.g. `(load "~/lisp/aoc-2021/day01")`
Or, from the shell:
```
$ cd .../aoc-2021
$ sbcl --script day01.lisp
or
$ ccl --load day01.lisp
```
day04.lisp requires that the file `"~/quicklisp/setup.lisp"` exists.
If that isn't already the case on your system, since `sbcl` doesn't natively load from a URL, as CCL does, if you're using that, you'll need to download [beta.quicklisp.org/quicklisp.lisp](http://beta.quicklisp.org/quicklisp.lisp), load it, and run `(quicklisp:quickstart:install)`.