Writing Lines
write-line:
arguments: string &optional stream
&key start end
(write-line "We hold these truths "
stream)
;; Writes text and newline marker
(write-line "We hold these truths "
stream :start 0 :end 3)
;; Writes 'We ' and newline marker
Previous slide
Next slide
Back to first slide
View graphic version