diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-12-16 04:04:17 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-12-16 04:04:17 +0100 |
commit | 8414d540e9032f5f4b294da8329c82f37ce3147a (patch) | |
tree | 4abc02f7e8d71501dbe03be3fd1487f454ac30e0 /2019 | |
parent | f8697a854edd878d8787cc450a2c4d98c8d1b755 (diff) |
Use ~d instead of ~a
Diffstat (limited to '2019')
-rw-r--r-- | 2019/05/puzzles.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/2019/05/puzzles.lisp b/2019/05/puzzles.lisp index e81b352..1d42479 100644 --- a/2019/05/puzzles.lisp +++ b/2019/05/puzzles.lisp @@ -2,7 +2,7 @@ (load "../interpreter.lisp") -(format t "~a~%" (car (last (intcode:run (intcode:parse "input") +(format t "~d~%" (car (last (intcode:run (intcode:parse "input") ;; START PART 1 '(1) ;; END PART 1 START PART 2 |