write
-- r7rs
Definition procedure
;
Procedure variants:
((value) -> (undefined))
((value textual-output-port-open) -> (undefined))
value
;textual-output-port-open
;undefined
;scheme:write
-- (scheme write)
;scheme
-- (scheme)
;(write obj) (write obj port)
Writes a representation of
obj
to the given textual outputport
. Strings that appear in the written representation are enclosed in quotation marks, and within those strings backslash and quotation mark characters are escaped by backslashes. Symbols that contain non-ASCII characters are escaped with vertical lines. Character objects are written using the#\
notation.If
obj
contains cycles which would cause an infinite loop using the normal written representation, then at least the objects that form part of the cycle must be represented using datum labels as described in section on datum labels. Datum labels must not be used if there are no cycles.Implementations may support extended syntax to represent record types or other types that do not have datum representations.
The
write
procedure returns an unspecified value.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.