lua-users home
lua-l archive

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


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

Multiple lines is fine as is not wrapping it in (), so I'm not sure what
you were fixing exactly.

> --rb

    -Etan