lua-users home
lua-l archive

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


> module(name) is not considered evil, but module(name,package.seeall) is.
> (I'm assuming that Lua 5.2 is usually built in compatibility mode)

I tend to consider 'module(name)' evil nowadays. It is is so easy
to write a module without 'module', and the result is so less magic...

-- Roberto