https://github.com/annotation/text-fabric
Raw File
Tip revision: b7c6e7e757970b5f41446299e688107c69ef04d1 authored by Dirk Roorda on 18 August 2022, 17:12:12 UTC
refinements in colume support
Tip revision: b7c6e7e
srun.py
from subprocess import run

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