write-simple -- r7rs Definition procedure;
write-simple (from vonuvoli);Procedure variants:
((value) -> (undefined))
((value textual-output-port-open) -> (undefined))
value;textual-output-port-open;undefined;scheme:write -- (scheme write);scheme -- (scheme);(write-simple obj) (write-simple obj port)The
write-simpleprocedure is the same aswrite, except that shared structure is never represented using datum labels. This can causewrite-simplenot to terminate ifobjcontains circular structure.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.