https://github.com/annotation/text-fabric
Raw File
Tip revision: 7e98b2b1dd2bbe518d916e75e289805b6999106c authored by Dirk Roorda on 08 May 2020, 11:50:10 UTC
v8 released
Tip revision: 7e98b2b
srun.py
from subprocess import run

print('A')
run('python3 hello.py', shell=True)
print('B')
back to top