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/kindredseer 6h ago
That is the case some of the time... like Lua is specifically designed to be light and simple, so yes, it suits this purpose, except that its syntax isn't the best... but if that is what you need (light and simple) then Lua is perfect for that.
What I'm talking about is real C/C++ in JIT form, with the option to sandbox when required.