summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--2024/d03.lisp4
1 files 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)