If item 0 of the list "row" element is a negative number, the number is written as a string. ``` observer> csv:to-file "myfile.csv" [[1 "two" 3] [-4 -5]] ``` will result in a file myfile.csv containing: ``` 1,two,3 "-4",-5 ```