Any way I can write a Carriage return to a file so that strings etc. can be on separate lines? That is to make this code
...output this...
line 1
line 2
...instead of this...
line 1 line 2
WriteString(file,"line 1") WriteString(file,"line 2")
...output this...
line 1
line 2
...instead of this...
line 1 line 2