https://github.com/annotation/text-fabric
Raw File
Tip revision: ea7f4c45accbad81e8b4829effb5024f0ce7ed2f authored by Dirk Roorda on 29 August 2022, 09:54:27 UTC
code meta harvest
Tip revision: ea7f4c4
srun.py
from subprocess import run

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