diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-12-10 21:33:44 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-12-10 21:33:44 +0100 |
commit | a7ad1d1097f08554d09da1885dff40760f44e34d (patch) | |
tree | f2f79b5a5484cf26ddbb05cce509a53e23b26c2c | |
parent | bcc82409e1ea44ccc5f662a05c8bb9f0daf3aade (diff) |
Use the proper format specifier
-rw-r--r-- | 2024/10/puzzles.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/2024/10/puzzles.lisp b/2024/10/puzzles.lisp index dcfcc7c..d67b075 100644 --- a/2024/10/puzzles.lisp +++ b/2024/10/puzzles.lisp @@ -38,4 +38,4 @@ (char= (aref lines i j) needs)) append (positions-of-nines lines i j))))) -(format t "~a~%" (main "input"))
\ No newline at end of file +(format t "~d~%" (main "input"))
\ No newline at end of file |