https://github.com/annotation/text-fabric
Raw File
Tip revision: 513ee9bd998cbd250529a733cfe8c887d4fb1361 authored by Dirk Roorda on 21 June 2023, 19:44:06 UTC
boost for the TF browser
Tip revision: 513ee9b
srun.py
from subprocess import run

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