Joseph H Speredelozzi <ยทยทยทยท@wpi.edu> writes:
> how do i get the print function in lisp to not print that initial newline,
> or is there another printing function that does not do that?
Ignoring defaulting of the stream argument, which is actually optional,
print does this:
(defun print (x stream)
(terpri stream)
(prin1 x stream)
(write-char #\Space stream)
x)
In other words, you want PRIN1.