lua-users home
lua-l archive

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


> But I was wondering about a way of adding a loader for just one
> package.

Add the loader to the preload table:

  package.preload.modname = function_to_load_it

-- Roberto