https://github.com/annotation/text-fabric
Raw File
Tip revision: cf868b310300e7e1baf30923afdfdb58367c2a42 authored by Dirk Roorda on 30 January 2021, 14:24:07 UTC
version mapping functions included
Tip revision: cf868b3
srun.py
from subprocess import run

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