[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.2.0 (work4) now available
- From: David Kastrup <dak@...>
- Date: Tue, 10 Aug 2010 12:08:45 +0200
Everett L Williams II <rett@classicnet.net> writes:
> If local were the default, and items to be used elsewhere had to be
> exported, just think how many other problems would become basically
> impossible.
I don't think that an automatic transformation of
local i=3
do
i=2
end
print(i)
into
local i=3
do
local i=2
end
print(i)
is going to cause much enthusiasm among most users.
--
David Kastrup
- References:
- Re: [ANN] Lua 5.2.0 (work4) now available, Roberto Ierusalimschy
- Re: [ANN] Lua 5.2.0 (work4) now available, Renato Maia
- Re: [ANN] Lua 5.2.0 (work4) now available, Roberto Ierusalimschy
- Re: [ANN] Lua 5.2.0 (work4) now available, Petite Abeille
- Re: [ANN] Lua 5.2.0 (work4) now available, Javier Guerra Giraldez
- Re: [ANN] Lua 5.2.0 (work4) now available, Everett L Williams II
- Re: [ANN] Lua 5.2.0 (work4) now available, Mark Hamburg
- Re: [ANN] Lua 5.2.0 (work4) now available, Petri Häkkinen
- Re: [ANN] Lua 5.2.0 (work4) now available, steve donovan
- Re: [ANN] Lua 5.2.0 (work4) now available, Roberto Ierusalimschy
- Re: [ANN] Lua 5.2.0 (work4) now available, Everett L Williams II