mirror of
https://github.com/EnergyMech/energymech.git
synced 2025-12-17 15:36:50 +00:00
9 lines
86 B
C
9 lines
86 B
C
|
|
#include <unistd.h>
|
||
|
|
|
||
|
|
int main(void)
|
||
|
|
{
|
||
|
|
Py_Initialize();
|
||
|
|
Py_Finalize();
|
||
|
|
return 0;
|
||
|
|
}
|