11 lines
156 B
C++
11 lines
156 B
C++
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
using namespace std;
|
|
|
|
int main() {
|
|
chdir("/opt/PyFM/");
|
|
system("python3 .");
|
|
return 0;
|
|
}
|