https://github.com/annotation/text-fabric
Raw File
Tip revision: 4e4f942a8d872ff613548db7cd2349a0f53554ed authored by Dirk Roorda on 10 April 2019, 07:33:53 UTC
small fix
Tip revision: 4e4f942
srun.py
from subprocess import run

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