Search code examples
lispcommon-lisp

How to convert a string to list using clisp?


How can i convert the string "1 2 3 4 5 6 7" into the list (1 2 3 4 5 6 7) elegantly? I am using CLISP.


Solution

  • Hint: Take a look at with-input-from-string.