If I have an if statement that is long and I want to continue it to another line, what is the format? The typical & (carriage return) + format is being flagged as a syntax error.
If I have an if statement that is long and I want to continue it to another line, what is the format? The typical & (carriage return) + format is being flagged as a syntax error.
ls_string = "blah blah blah" + &
"some more stuff"
The ampersand character initiates statement *continuation* across "immediately following" line break.
And it is true that in Roland's case the continuation happens in the middle of a string *concatenation*.