https://github.com/annotation/text-fabric
Raw File
Tip revision: 29df2353a2e2b0e87aa53be0c953ff3529602b83 authored by Dirk Roorda on 11 June 2020, 15:23:28 UTC
hotfix
Tip revision: 29df235
srun.py
from subprocess import run

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