Re: Why not allow local s = "abc":reverse()
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Why not allow local s = "abc":reverse()
- From: Florian Weimer <fw@...>
- Date: 2008年12月13日 22:43:02 +0100
* 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.