Hi,
I must create some CSV files, but I have noticed that, if for example, I write:
PRINT #1, "hello1"
WRITE #1, "hello2"
hello2 is written on line 1, over hello1. In order to have on line 1 "hello1" and in line 2 "hello 2", I have to use or only PRINT # or only WRITE #.
Is there a way to combine both, or to use WRITE # in a way where is possible to write characters such "?