lua-users home
lua-l archive

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


> My program use a lot of modules , and has hundreds
> global variables declared with tolua ( not fast thing too ).

Just to make it clear: you can get the "old" (work6) behavior for
modules writing this:

  module(modname, package.seeall)
  -- all global variables visible here

-- Roberto