https://github.com/annotation/text-fabric
Raw File
Tip revision: 92d03dc470a217b73f890212332e07feeebe4a3a authored by Dirk Roorda on 10 January 2019, 19:18:54 UTC
tutorials moved
Tip revision: 92d03dc
srun.py
from subprocess import run

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