https://github.com/annotation/text-fabric
Raw File
Tip revision: d995e01701e3675b0361808df25b3d8a20e51ce9 authored by Dirk Roorda on 08 May 2019, 19:27:36 UTC
improvement to T.text()
Tip revision: d995e01
srun.py
from subprocess import run

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