Execute other language from C++

Dear C++ community;

Would it be possible to execute another language from cPlusPlus, for example a python-script?

Thanks anyway!
closed account (1vD3vCM9)
you can execute ASM, But besides that i think you need libraries. i may be wrong.
Trivially, you can simply make a system call to execute a Python script.

If you want to be more clever, and actually have Python and C++ code calling each other within the same application, there's Boost.Python:

http://www.boost.org/doc/libs/1_59_0/libs/python/doc/index.html

Topic archived. No new replies allowed.