Handbook
Glossary
write-csv ( rows -- )
Comma-separated-values parsing and writing
Prev:
read-row ( -- row )
Next:
write-row ( row -- )
Vocabulary
csv
Inputs
rows
a sequence of sequences of strings
Outputs
None
Word description
Writes a sequence of sequences of comma-separated-values to the output stream, escaping where necessary.
Definition
USING:
io
namespaces
;
IN:
csv
:
write-csv
( rows -- )
output-stream
get
stream-write-csv
;