SolarFM/src/versions/pyfm-0.0.1/PyFM_exec_bin.cpp

11 lines
156 B
C++
Raw Normal View History

2021-10-10 06:45:55 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
using namespace std;
int main() {
chdir("/opt/PyFM/");
system("python3 .");
2021-10-10 06:45:55 +00:00
return 0;
}