https://github.com/annotation/text-fabric
Raw File
Tip revision: 3f1ccee247290d97430561f25b945309e6aaa7eb authored by Dirk Roorda on 29 October 2020, 15:49:03 UTC
small fix
Tip revision: 3f1ccee
srun.py
from subprocess import run

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