Selecting An Embedded Language

后端 未结 7 2077
遥遥无期
遥遥无期 2021-01-12 08:29

I\'m making an application that analyses one or more series of data using several different algorithms (agents). I came to the idea that each of these agents could be implem

7条回答
  •  Happy的楠姐
    2021-01-12 09:25

    Yes, tons. Lua and Python seems to be the most popular:

    Embedding Lua

    • http://www.lua.org/pil/24.html
    • https://stackoverflow.com/questions/38338/why-is-lua-considered-a-game-language
    • Lua as a general-purpose scripting language?

    Embedding Python

    • http://docs.python.org/extending/embedding.html

    Embedding Tcl

    • http://wiki.tcl.tk/3474
    • http://wiki.tcl.tk/2265

    Embedding Ruby

    • How to embed Ruby in C++?

    Embed Perl

    • http://perldoc.perl.org/perlembed.html

    Embed JavaScript

    • http://spiderape.sourceforge.net/

    There are dozens of JavaScript engines around, this is just an example. Some of them are also frighteningly quick.

提交回复
热议问题