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