LAMPCAE/test/TestPythonModule.cpp

12 lines
243 B
C++
Raw Permalink Normal View History

2023-05-08 06:32:41 +00:00
#include "PythonModule/PyAgent.h"
using namespace std;
int main()
{
auto agent = Py::PythonAgent::getInstance();
agent->initialize(nullptr);
agent->submit("1+1");
// std::cout << "执行Python " << result << std::endl;
return 0;
}