Files
dev/script/56_ExecutingCPython.js
2018-01-19 10:56:53 +01: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
)