https://github.com/annotation/text-fabric
Raw File
Tip revision: cdb84ae39d22f34786363631ce513b76ada83494 authored by Dirk Roorda on 25 September 2018, 15:50:02 UTC
better help in BHSA app
Tip revision: cdb84ae
srun.py
from subprocess import run

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