lua-users home
lua-l archive

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


> I could compile it using luac, but that wouldn't stop somebody from
> disassembling it and getting the source code?

Compiling with luac is a good option: Adobe distributes Lightroom with
lots of precompiled Lua code, for instance. They don't seem worried.

For non trivial programs, it is not easy to reconstruct the souce
code from the bytecode. The best effort in the direction is LuaDec
(http://luadec.luaforge.net/), but even that does not recover
complete source code.
--lhf