lua-users home
lua-l archive

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


On Sun, 19 Jun 2022 at 11:05, Budi <budikusasi@gmail.com> wrote:
> What actually is luac, lua compiler of Lua programming language? Is it
> akin more to C compiler, or to Perl or Python compiler (which compiles
> a should-be interpreted script)?

Compiler to bytecode. Does roughly the same as loadfile() +
string.dump() + save string to file.

Francisco Olarte.