https://github.com/annotation/text-fabric
Raw File
Tip revision: 42d77fafa0427a5ea11801d04eba4de91965e84c authored by Dirk Roorda on 04 February 2022, 15:40:43 UTC
small fixes
Tip revision: 42d77fa
srun.py
from subprocess import run

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