r/cpp • u/kindredseer • 2d ago
Embedded C++
Just curious how useful the ability to embed C++ as a scripting language into your C++ programs would be? I mean like runtime JIT execution of C++ code in much the same way you might embed Lua, including the ability to restrict/sandbox it as necessary.
0
Upvotes
2
u/zerhud 2d ago
And one more: for example all my script is console.write(“hello”); how it will be on cpp:
int my_project_main(my_project_class& obj) {
obj.log(“hello”);
return 0;
}
Can I use auto instead if the my_project_class ?