Next Previous Up Top Contents Index

5.11 The STREAMS module

write-line

Open generic function

Summary

Writes a string followed by a newline to an output stream.

Signature

write-line output-stream string #key start end => () 

Arguments

output-stream
An instance of <stream>.

string
An instance of <string>.

start
An instance of <integer>. Default value: 0.

end
An instance of <integer>. Default value: string.size.

Values

None.

Library

io

Module

streams

Description

Writes string followed by a newline sequence to output-stream.

The default method behaves as though it calls write on string and then calls new-line.

If supplied, start and end delimit the portion of string to write to the stream.

See also

read-line, page 86

write, page 111

write-element, page 112


System and I/O Reference - 31 MAR 2000

Next Previous Up Top Contents Index