I am trying to concat strings in lisp, using clisp on linux.
I run following code:
(defun bingo ()
(strcat "Correct! You guessed " (itoa *count*) " times."))
but, get following error:
EVAL: undefined function STRCAT
EVAL: undefined function ITOA
Any suggestion?