diff options
author | Emile <git@emile.space> | 2024-12-04 19:33:57 +0100 |
---|---|---|
committer | Emile <git@emile.space> | 2024-12-04 19:33:57 +0100 |
commit | 270abeee59d47849a016980f6d73654b4a12c00a (patch) | |
tree | ff7605c5a557ebbdac0d7aa891d8f1ee3ee22e5b | |
parent | 9ce100f7a4177cd06bbb136a4d26db1ba58f4552 (diff) |
added the quicklisp loader for the regex lib and removed debug printing
-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) |