csv:to-file
csv:to-file csv-file list csv:to-file csv-file list delimiter
Writes the given list of lists to a new CSV file. For example:
observer> csv:to-file "myfile.csv" [[1 "two" 3] [4 5]]
will result in a file myfile.csv
containing:
1,two,3
4,5
Take me to the full CSV Extension Dictionary