diff options
Diffstat (limited to '2024/d03.lisp')
-rw-r--r-- | 2024/d03.lisp | 4 |
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) |