[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: patch: C-style string lexing
- From: Mark Hamburg <mhamburg@...>
- Date: Thu, 31 Jan 2008 08:24:13 -0800
I agree that the better answer here is constant folding for string
concatenation. The motivation for using the C style approach over the the [[
]] style approach is presumably related to better indentation behavior in
the code and better control over things like line breaks. But I don't see it
as a huge burden to have to write:
myBigString = "The first part of the string "
.. "is followed by the the second "
.. "part of the string."
Mark