NewLineCharacter
Type
expression
Summary
The new line character
Syntax
newline
Description
Use the newline constant to add new lines to a string variable.
Examples
variable tList as List
push "line 1" onto tList
push "line 2" onto tList
push "line 3" onto tList
variable tLines as String
combine tList with newline into tLines -- tLines has 3 lines