Node:Output, Next:System interface, Previous:Input, Up:Input and output
write obj | library procedure |
write obj port | library procedure |
Writes a written representation of obj to the given port. Strings
that appear in the written representation are enclosed in doublequotes, and
within those strings backslash and doublequote characters are
escaped by backslashes.
Character objects are written using the |
display obj | library procedure |
display obj port | library procedure |
Writes a representation of obj to the given port. Strings
that appear in the written representation are not enclosed in
doublequotes, and no characters are escaped within those strings. Character
objects appear in the representation as if written by Rationale: |
newline | library procedure |
newline port | library procedure |
Writes an end of line to port. Exactly how this is done differs
from one operating system to another. Returns an unspecified value.
The port argument may be omitted, in which case it defaults to the
value returned by |
write-char char | procedure |
write-char char port | procedure |
Writes the character char (not an external representation of the
character) to the given port and returns an unspecified value. The
port argument may be omitted, in which case it defaults to the value
returned by |