[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Backslash-newline escape as a line continuation rather than a newline?
- From: Roberto Ierusalimschy <roberto@...>
- Date: Sat, 3 Apr 2010 17:10:45 -0300
> How about automatic concatenation of juxtaposed string literals, as C does?
> No need for special escape sequences at all! =)
This already has a meaning in Lua: f "hi" "ho" is equivalent to
f("hi")("ho")
-- Roberto