Hello. I am a novice user using 'Regina Rexx Interpreter' for simple management of my personal text files under Windows.
I have recently updated from v3.7 to the last v3.9.3 and I have noticed an important issue:
The 'WRITELN' in v3.7 ends the line with a 'CRLF' char, but in v3.9.3 ends with only a 'LF'
I run 'rexx.exe' under my Windows CMD with this simple rexx:
Hello. I am a novice user using 'Regina Rexx Interpreter' for simple management of my personal text files under Windows.
I have recently updated from v3.7 to the last v3.9.3 and I have noticed an important issue:
The 'WRITELN' in v3.7 ends the line with a 'CRLF' char, but in v3.9.3 ends with only a 'LF'
I run 'rexx.exe' under my Windows CMD with this simple rexx:
options AREXX_BIFS AREXX_SEMANTICS
rc=OPEN(FILE,'Output.txt','W')
rc=WRITELN(FILE,'Sample Line')
How can I get an 'CRLF' ?