richardhundt / shine

A Shiny Lua Dialect

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Re-use existing Lua code or modules with Nyanga

shortweekend opened this issue · comments

Is there currently an easy way to re-use existing Lua code or modules with Nyanga?

Thanks

On 3/2/14 5:43 PM, shortweekend wrote:

Is there currently an easy way to re-use existing Lua code or modules
with Nyanga?

Sure, nyanga detects if a file has a .lua extension and if so will
load it without trying to parse it first. So if you keep your file
extensions as .nga for nyanga and .lua for Lua sources you should be
good. It also detects pre-compiled LuaJIT bytecode (via the magic byte
sequence at the start), and will load and run that too.

Of course, you still need to tell the VM where to find your Lua modules
(via LUA_PATH environment variable, or package.path, etc.).

Thanks


Reply to this email directly or view it on GitHub
#36.

Thanks, I should have noticed ;)