You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We'd have to make some module in charge of exposing bindings to the languages, and choose, either at runtime or at compilation, which language to use. We'd have then to use only the minimal common features to both languages, which means we have to drop object orientation, iterators, varargs, and other advanced features of lua in the bindings (I think I particularly was the one making the most use of them in the bindings I wrote) and keep only basic functions with basic data types.
Arnaud mentioned that Lua is class + method based, which he reflected in the bindings to match that, but that it is also possible to do it in a generic, functional way. This would support both function setup layouts, when cfg.feature Lua or another language is used.
With conditional compilation of Lua we could open the door to other scripting languages.
The text was updated successfully, but these errors were encountered: