lua-users home
lua-l archive

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


* CHU Run-min:

> local s = ("abc"):reverse()     VALID
> local s = "abc":reverse()   INVALID
> Why?

"." doesn't work in this context, either.  Same for tables.  Based on
Fabien's observation, I think all this is the correct behavior.