Home > Community > FPScript > Breaking FP Script across lines > Reply To: Breaking FP Script across lines

#12915
Bernhard KantzBernhard Kantz
Participant

One can split a line of FPScript code by using a underscore ‘_’ or backslash ‘\’ character at the end of a line like in the following example:


Dim result = List(_
"I", 42, _
"II", 1093, _
"III", 2.718, _
"IV", "Hello world!" _
)