https://github.com/annotation/text-fabric
Raw File
Tip revision: 4b3e10665499f7ebd8ec2bf073dfbca000eaa9ba authored by Dirk Roorda on 10 July 2018, 08:50:53 UTC
fixes
Tip revision: 4b3e106
srun.py
from subprocess import run

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