lua-users home
lua-l archive

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


> I'm quite disappointed that the constant expression [concatenation]
> isn't compile-time evaluated:

This has been discussed before. In summary, Lua will do the concatenation
anyway at run time, when it is easier, so the total time will be the same.
Unless you're doing it in a loop, in which case you'd better move it outside
the loop.