https://github.com/annotation/text-fabric
Raw File
Tip revision: 24391708e0f1090730cee7508c68022e4aa7f90c authored by Dirk Roorda on 02 July 2019, 17:23:48 UTC
fixes
Tip revision: 2439170
srun.py
from subprocess import run

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