summaryrefslogtreecommitdiffstats
path: root/top.lisp
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-12-14 01:03:25 +0000
committerYann Herklotz <git@yannherklotz.com>2021-12-14 01:03:25 +0000
commitc05f929f4a3c882215f073fcec17f7f67f74b118 (patch)
treef2d1f2dc610e4c2a4ec116d6aa29c305791145b1 /top.lisp
parent070f6560bc16d6d27d304b0f37471cdf6c8c5ff8 (diff)
downloadaoc21-c05f929f4a3c882215f073fcec17f7f67f74b118.tar.gz
aoc21-c05f929f4a3c882215f073fcec17f7f67f74b118.zip
Add top-level lisp file
Diffstat (limited to 'top.lisp')
-rw-r--r--top.lisp18
1 files changed, 18 insertions, 0 deletions
diff --git a/top.lisp b/top.lisp
new file mode 100644
index 0000000..065291c
--- /dev/null
+++ b/top.lisp
@@ -0,0 +1,18 @@
+(ql:quickload 'uiop :silent t)
+(ql:quickload 'cl-ppcre :silent t)
+(ql:quickload 'clunit :silent t)
+
+(load "src/common.lisp")
+
+(clunit:defsuite aoc ())
+
+(load "src/01.lisp")
+(load "test/01.lisp")
+
+(load "src/02.lisp")
+(load "test/02.lisp")
+
+(load "src/03.lisp")
+(load "test/03.lisp")
+
+(defun run-all () (run-suite 'aoc))