String Input and Output
> (setq line (read-line))This is a line of text.
"This is a line of text."
"This is a line of text."
"This is a line of text."
> (format t "The input was: ~S" line)
The input was: "This is a line of text."
> (format t "The input was: ~A" line)
The input was: This is a line of text.
(format nil (format t "The input was: ~A" line)))
"The input was: This is a line of text."