I tried to find a lisp function to convert between numbers and strings and after a little googling I fond a function with the same name. when I entered (itoa 1)
SLIME printed:
Undefined function ITOA called with arguments (1) .
How can I do the conversion?
read-from-string
on externally provided strings, or at least bind*read-eval*
to false when you do. Also of note for general number-parsing is the libraryparse-number
. – Grandmamma