https://github.com/annotation/text-fabric
Raw File
Tip revision: 59cc49a442ea21aa6014181b91ee3f3b2322947f authored by Dirk Roorda on 18 January 2019, 10:12:43 UTC
small fix in browsing passages
Tip revision: 59cc49a
srun.py
from subprocess import run

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