lua-users home
lua-l archive

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


On Fri, 22 Feb 2002, J. Perkins wrote:

> Is there some trick I can use to create a local variable in a chunk
> from C? What I'm trying to is create Lua function like:

No. The only way to create a local variable is with the syntax "local ...".

-- Roberto