https://github.com/annotation/text-fabric
Raw File
Tip revision: 7d85a340e65c00d26382ffadeaf54a04299f8bc6 authored by Dirk Roorda on 22 June 2023, 12:52:56 UTC
more powerful queries and highlight fixes
Tip revision: 7d85a34
srun.py
from subprocess import run

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