lua-users home
lua-l archive

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


Henrik Ilgen wrote:

>  The very first thing require() does is to look up if the required module can be found in package.loaded - so if you store > your module there manually, you shouldn't have any problems.

Thanks Henrik. While not exactly what I was looking for ( I still wanted the user to call require ) it did lead me to the solution - package.preload.

John