https://github.com/annotation/text-fabric
Raw File
Tip revision: 2f6407397da857c1aa470bee7cb9dd5456d18a12 authored by Dirk Roorda on 02 November 2021, 14:28:09 UTC
small sophistication in tf-apps
Tip revision: 2f64073
srun.py
from subprocess import run

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