[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: What actually is luac, lua compiler
- From: Francisco Olarte <folarte@...>
- Date: Sun, 19 Jun 2022 13:14:07 +0200
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.