https://github.com/annotation/text-fabric
Raw File
Tip revision: 7cc5f763d88f2f57de2d54b95107d2c7d37f362f authored by Dirk Roorda on 10 July 2023, 13:44:56 UTC
small fixes
Tip revision: 7cc5f76
srun.py
from subprocess import run

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