[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: snapshot of Lua 4.1 (work)
- From: Roberto Ierusalimschy <rieru@...>
- Date: Thu, 1 Nov 2001 15:35:30 -0600 (CST)
On Thu, 1 Nov 2001, John Batty wrote:
> > Following the new visibility rules, the `a' is visible inside the enclosed
> function.
> Is 'a' readonly inside the enclosed function (as with upvalues)?
> Or can you modify the value of 'a' and have it changed outside the function?
Fully visible. You can modify it and have it changed outside (well, it is
the same variable, after all).
-- Roberto