lua-users home
lua-l archive

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



On Tue, Dec 30, 2008 at 7:32 PM, Linker <linker.m.lin@gmail.com> wrote:
But "local f;" make 'f' be a global variable.

Not at all - what makes you think that? "f" will remain a reference to the local variable until the end of the enclosing scope.

-Duncan