Name
UseCarriageReturn -- configure line break behaviour (V7.1)
Synopsis
UseCarriageReturn(enable)
Function
This function allows you to set whether or not WriteLine() will write a carriage return character before the line feed character. MS-DOS and its successor Windows both use carriage return and line feed characters to indicate a line break whereas Unix, Amiga, and macOS just use a line feed character to force a line break.

If enable is set to True, WriteLine() will write a carriage return character before each line feed character, otherwise it will only output a line feed character. By default, UseCarriageReturn() is set to True on Windows systems and to False on all other systems.

Inputs
enable
True or False indicating whether WriteLine() should output a carriage return before a line feed character

Show TOC