Open main menu

Starts a new line and returns carriage.

Usage

NewLine

Notes

  • Use the "+" character to add NewLine to a string expression, or
  • Use Text to generate a string including new lines.

Examples

FileAppend("c:\testfile.txt", "We can see a new bar for" + NumToStr(Date, 0) + NewLine);

Will print the specified line to the 'testfile.txt' followed by a new line.

Print(Text("Hello", NewLine, "World!"));

Will print

Hello
World!

to the PowerLanguage Editor output log.