Files
dev/script/tutorial/56_ExecutingCPython.js
2018-04-17 12:05:48 +02:00

10 lines
404 B
JavaScript
Executable File

///////////////////////////////////////////////////////////////////////////////////////////////////
// Executing CPython in external process.
// Requires cpython.py to be put in the scripts folder, or else in the python path.
///////////////////////////////////////////////////////////////////////////////////////////////////
//Executing a module
ret = exec_cpython("cpython", [])
print (ret
)