https://github.com/annotation/text-fabric
Raw File
Tip revision: 9c2cf4feb4e2d3b3881037f73bc0f7c45be4613d authored by Dirk Roorda on 14 June 2019, 13:34:20 UTC
small fixes
Tip revision: 9c2cf4f
srun.py
from subprocess import run

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