https://github.com/annotation/text-fabric
Raw File
Tip revision: c5b365425573a40467ae6bcb8a9ea047e4a781bb authored by Dirk Roorda on 12 May 2019, 10:22:24 UTC
structure
Tip revision: c5b3654
srun.py
from subprocess import run

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