10 lines
404 B
JavaScript
Executable File
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
|
|
)
|