Linefeed Question

Using \n in a Script the output text file always gets 0D 0A
How can I specify that it just be 0A?

What function are you using to write linefeeds? The following should work ok:

int f = FileNew();
FPrintf( f, “Line 1\nLine 2\n” );

Graeme Sweet
SweetScape Software

Ah!
I’ve been using Printf to view the results in the output window then saving that to inspect the txt file.
Since my script is nearly complete I’ll implement the FileNew and FPrintf.

:+1: