https://github.com/annotation/text-fabric
Raw File
Tip revision: a0756f5c549fc6de880876b0aa65f7304b071353 authored by Dirk Roorda on 05 July 2023, 14:32:51 UTC
fix
Tip revision: a0756f5
srun.py
from subprocess import run

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