https://github.com/annotation/text-fabric
Raw File
Tip revision: 478e28207ab4997dc42b53efc96bd525a0679301 authored by Dirk Roorda on 03 May 2022, 06:12:55 UTC
fix in export
Tip revision: 478e282
srun.py
from subprocess import run

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