lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Thu, Feb 11, 2010 at 5:00 PM, Etan Reisner
<deryni@unreliablesource.net> wrote:
>> Perhaps this should be:
>>
>> function one()
>>     return( [[long long string]] .. two() .. [[more long long string]] )
>> end
> <snip>

Oh sorry, i mentally ignored that you are *returning* a concatenation.
In the example from Jonathan, he was concatenating the result of
print: << print[[foo]] .. two() .. [[bar]] >>.

Sorry again.

--rb