NewLine Procedure
Returns the end-of-line character sequence, which depends on the user's operating system.
On Linux and macOS, this is a line feed, or
Chr(13).
On Windows, this is a carriage return and line feed, or
Chr(13) + Chr(10).
Declaration
function NewLine() as String
Return value
String — End-of-line string.
Example
Code
dim x = "A" + NewLine() + "B"
print x
Output