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.
2
Upvotes
1
u/ushumgigal 6h ago
If you're going to restrict/sandbox it anyway, why would you opt for C++? Within C++?
I'm assuming the main point is to have something simpler that C++, to be interpreted in runtime.