diff options
-rw-r--r-- | plus-inc.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plus-inc.lisp b/plus-inc.lisp index 9ad3173..4fb07bb 100644 --- a/plus-inc.lisp +++ b/plus-inc.lisp @@ -8,7 +8,7 @@ number (reverse number))) -(defun explode-from-string (string) +(defun explode-string (string) "Given a string, it returns a list of the symbol of this string" (loop for letter across string collect (intern (string letter)))) |