https://github.com/annotation/text-fabric
Raw File
Tip revision: 06f6b605dcca3c2f750bd11885b446a3e7b175c5 authored by Dirk Roorda on 28 May 2020, 21:06:32 UTC
towards more generic display algorithm
Tip revision: 06f6b60
srun.py
from subprocess import run

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