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-simple
procedure is the same aswrite
, except that shared structure is never represented using datum labels. This can causewrite-simple
not to terminate ifobj
contains circular structure.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.