Choosing embedded scripting language for C++

前端 未结 6 1318
悲哀的现实
悲哀的现实 2021-02-06 03:16

I want to choose an embedded scripting language that i will use on C++. It should connect a database such as Oracle. My host application is a server application. That will pass

6条回答
  •  半阙折子戏
    2021-02-06 03:34

    Lua is intended to be an embedded language and has a simple API. Python and Ruby are much more general purpose and are (for embedding at least) significantly more complicated. This alone would lead me to using Lua.

提交回复
热议问题