Hi,
In message "Re: ruby-dev summary 21637-21729"
on 03/11/06, Paul Brannan <pbrannan / atdesk.com> writes:
|Is the syntax error because of the first line or because of the second?
Both. Sequence of strings will no longer be valid.
|I ask because I do this a lot in my code:
|
| s = "this is a string " \
| "that I have chosen to break " \
| "into multiple lines"
How about
s = "this is a string " +
"that I have chosen to break " +
"into multiple lines"
?
matz.