diff options
-rw-r--r-- | cl-math.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cl-math.lisp b/cl-math.lisp index ff3480f..03a347d 100644 --- a/cl-math.lisp +++ b/cl-math.lisp @@ -17,7 +17,7 @@ (defun explode-to-symbol (number) "Given a number (which can have letters), it returns a list of the symbols of this number" - (loop for letter across (write-to-string number) collect (intern (string letter)))) + (loop for letter across (prin1-to-string number) collect (intern (string letter)))) (defun implode-from-symbol (number) "Given a list of the symbols of a number (which can have letters), it returns the symbol of this number" |