lua-users home
lua-l archive

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


On Apr 8, 2012, at 2:16 PM, Franklin Dijkstra wrote:

> And let lua recognize the
> file and run it with the Lua Virtual Machine.

Ah, yes, also worth mentioning… lua byte code is not portable across platform, nor major version… hand crafted byte code can abuse the vm in unexpected ways... 
 
> This make it more attractive
> since it wont be much of a mess for users to download.

What's wrong with downloading one archive?

> And it will be more
> attractive for developers since it just so much cleaner.

Hmmm… that's debatable…

In any case, you can always concat all your lua files into one and be done. Assuming your code can withstand such packaging that is.