lua-users home
lua-l archive

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


Michael Newberry wrote:
Is there a way to procompile chunks to byte code and load that/them at
script execution time?

Use the 'luac' compiler that comes with Lua.  The resulting .luac files
can be loaded and run interchangably with the original .lua files.

--Adam