lua-users home
lua-l archive

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


>bar = 10;
>
>fuction foo()
>bar = 5; -- this bar is local to foo()
>print(bar);

How about "print"? Is it local too?
--lhf