https://github.com/annotation/text-fabric
Raw File
Tip revision: c115e83be29a6e5311cea07ddafe648ba2215263 authored by Dirk Roorda on 23 August 2021, 13:48:15 UTC
bugfixes 73 and 74
Tip revision: c115e83
srun.py
from subprocess import run

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