Other Ways to Write
Using the function WRITE is rather uncommon
; print readably with prepended #\newline
(print "Five" stream)
"Five"
"Five"
; print readably, without prepended #\newline
(prin1 "Five" stream)
"Five"
"Five"
; print it pretty
(princ "Five" stream)
Five
"Five"
Previous slide
Next slide
Back to first slide
View graphic version