About Lua Extention possibilities

I am impressed about extention DefArmy v1
https://github.com/dev-masih/defarmy
It’s written entirely Lua (100%)! And only 708 lines.
And some other extentions were written in Lua.
Can Lua be used instead of C/C++ for all task for extentions?

Also: Can I add some additional Lua possibilities from different Github Projects?
https://github.com/nidorx/ecs-lua
https://github.com/imliam/Lua-Collections

I think the answer is “no” at the moment.
Extensions working with native code while Lua has it’s own world and just able to contact with native code via C API Lua 5.3 Reference Manual

It’s just related to algorithm, no need native code, so we can use only Lua.

I think you are misunderstood with libraries, not extensions

2 Likes