From 475d382b0baaa085910d6066d3a51943e777b147 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Wed, 22 Dec 2021 15:02:02 +0100 Subject: Pass the 4th day in AOC --- top.lisp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'top.lisp') 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)) -- cgit