ChaiScript是第一个也是目前唯一一个与C++的兼容性的脚本语言,受ECMAScript 影响的嵌入式的功能性语言。
示例代码:
#include <chaiscript/chaicript.hpp>std::string helloWorld(const std::string &t_name){ return "Hello " + t_name + "!";}int main(){ chaiscript::ChaiScript chai; chai.add(chaiscript::fun(&helloWorld), "helloWorld"); chai.eval("puts(helloWorld(\"Bob\"));");}
评论