How i can execute c++ code in a String?
for example,
string code = "cout << \"hi\" << endl;";
execute(code);
How i can implement that "execute(std::s tring code)" function?
for example,
string code = "cout << \"hi\" << endl;";
execute(code);
How i can implement that "execute(std::s tring code)" function?
Comment