https://github.com/annotation/text-fabric
Raw File
Tip revision: 78e2b37c0231d9d5ff2f09eb39f79042744e864b authored by Dirk Roorda on 14 June 2022, 12:27:17 UTC
small fixes
Tip revision: 78e2b37
srun.py
from subprocess import run

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