Lisp-字符串concat

Lisp-字符串concat,lisp,clisp,Lisp,Clisp,我试图在linux上使用clisp在lisp中压缩字符串。 我运行以下代码: (defun bingo () (strcat "Correct! You guessed " (itoa *count*) " times.")) 但是,得到以下错误: EVAL: undefined function STRCAT EVAL: undefined function ITOA 有什么建议吗?使用连接而不是strcat@bluebelle谢谢,你能告诉我哪一个函数是用来把整型转换成字符串的吗?现

我试图在linux上使用clisp在lisp中压缩字符串。 我运行以下代码:

(defun bingo ()
  (strcat "Correct! You guessed " (itoa *count*) " times."))
但是,得到以下错误:

EVAL: undefined function STRCAT
EVAL: undefined function ITOA

有什么建议吗?

使用连接而不是strcat@bluebelle谢谢,你能告诉我哪一个函数是用来把整型转换成字符串的吗?现在你明白为什么你的问题会被否决了,不是吗?即使我从未使用Common Lisp编程,也可以自己用谷歌搜索答案:
CL-USER 1 > (format nil "This is too easy. ~a day I'll learn Lisp." 1)
"This is too easy. 1 day I'll learn Lisp."