https://github.com/annotation/text-fabric
Raw File
Tip revision: 5c578a09553a5fa68100fc3cbf919108e729829c authored by Dirk Roorda on 21 June 2019, 20:04:37 UTC
fonts
Tip revision: 5c578a0
srun.py
from subprocess import run

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