write-string
-- r7rs
Definition procedure
;
write-string
(from vonuvoli
);Procedure variants:
((string) -> (undefined))
((string textual-output-port-open) -> (undefined))
string
;textual-output-port-open
;undefined
;((string textual-output-port-open range-start) -> (undefined))
string
;textual-output-port-open
;range-start
;undefined
;((string textual-output-port-open range-start range-end) -> (undefined))
string
;textual-output-port-open
;range-start
;range-end
;undefined
;scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(write-string string) (write-string string port) (write-string string port start) (write-string string port start end)
Writes the characters of
string
fromstart
toend
in left-to-right order to the textual outputport
.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.