statement definition
Zero or more instructions. A statement is at
least one line long. Begin Dialog, Do,
For, If (multiline),
Select Case, While
and With statements are always more than one
line long. A single line statement continues on the next line if it ends
a line with a space and an underscore ' _'.
S$ = "This long string is easier
to read, " + _
"if it is broken across two lines."
Debug.Print S$