https://github.com/annotation/text-fabric
Raw File
Tip revision: c1cbbfaba83f18bc99a61e7190f1cdd0de492071 authored by Dirk Roorda on 16 January 2019, 22:50:01 UTC
small fix: newlines in pretty displays
Tip revision: c1cbbfa
srun.py
from subprocess import run

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