From 270abeee59d47849a016980f6d73654b4a12c00a Mon Sep 17 00:00:00 2001 From: Emile Date: Wed, 4 Dec 2024 19:33:57 +0100 Subject: 2024 day three - formatting added the quicklisp loader for the regex lib and removed debug printing --- 2024/d03.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2024/d03.lisp b/2024/d03.lisp index c194f97..e240ae9 100644 --- a/2024/d03.lisp +++ b/2024/d03.lisp @@ -1,10 +1,10 @@ (in-package :aoc/2024) +(ql:quickload "cl-ppcre") + (defparameter *input/d3* (asdf:system-relative-pathname :advent "2024/d03.input")) -(print *input/d3*) - (defun readfile (filename) (let ((lines '())) (with-open-file (stream filename :direction :input) -- cgit 1.4.1