summaryrefslogtreecommitdiffstats
path: root/top.lisp
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-12-22 15:02:02 +0100
committerYann Herklotz <git@yannherklotz.com>2021-12-22 15:02:02 +0100
commit475d382b0baaa085910d6066d3a51943e777b147 (patch)
tree8d18ba97d5eb03e0e11ed799211359c4ecd7aa76 /top.lisp
parent771f9fdf08671b2673a7b19d7980f15f2288eb26 (diff)
downloadaoc21-475d382b0baaa085910d6066d3a51943e777b147.tar.gz
aoc21-475d382b0baaa085910d6066d3a51943e777b147.zip
Pass the 4th day in AOC
Diffstat (limited to 'top.lisp')
-rw-r--r--top.lisp7
1 files changed, 6 insertions, 1 deletions
diff --git a/top.lisp b/top.lisp
index 4a69a6a..8a6ff40 100644
--- a/top.lisp
+++ b/top.lisp
@@ -8,6 +8,8 @@
(ql:quickload 'uiop :silent t)
(ql:quickload 'cl-ppcre :silent t)
(ql:quickload 'clunit :silent t)
+(ql:quickload 'cl-utilities :silent t)
+(ql:quickload 'trivia :silent t)
(load "src/common.lisp")
@@ -22,4 +24,7 @@
(load "src/03.lisp")
(load "test/03.lisp")
-(defun run-all () (run-suite 'aoc))
+(load "src/04.lisp")
+(load "test/04.lisp")
+
+(defun run-all () (clunit:run-suite 'aoc))