interpreter - How to execute C++ code without compiling it? -


I used the C + + open source code to pass some code in an application created with C ++ Which is a TCL interpreter. So I can create a file, put some XML data in it and some tags have some TCL codes. Finally, it is possible to configure the file some configuration and execute the TCL script snippet with the XML file in the appropriate places. To not use C ++ and TCL, I ask the following:

Is there an open-source C ++ code that can execute a C ++ code without compiling it? In other words, there is a C + + interpreter.

What is CINT?

CINT is an interpreter for C and C ++ codes. It is useful for situations where rapid development is more important than execution time. Compiling and linking cycles by using an interpreter has made dramatically easier development. CINT also makes C / C ++ programming pleasant for part-time programmers.

CINT has been written in C ++, which is less than 400,000 lines. It is used by many companies by making the default interpreter for banking, integrated devices, and even gaming environments, and basically a large number of high energy physicists.


Comments

Popular posts from this blog

c# - sqlDecimal to decimal clr stored procedure Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible' -

Calling GetGUIThreadInfo from Outlook VBA -

Obfuscating Python code? -