If I run this code
(format t "~a" "hello world")
in sbcl's default REPL, the output is "hello world" as expected. However, when I try to run the same code in slime mode in emacs, it throws the following error:
eval: Wrong type argument: stringp, t
What is that i am doing wrong here ?
format
function, but it needs the first argument to be a string. – user797257