Code: Select all
S1$ = " String1 "
S2$ = " String2 "
S3$ = (S2$) ; This works with unnecessary outer parentheses.
Debug S1$ + "Plus" + S2$ ; This works.
Debug S1$ + "Plus" + (S2$) ; This fails: "Parenthesis '(' are not allowed in string operations."

