https://github.com/annotation/text-fabric
Raw File
Tip revision: 6f99f5d59de865cf49ad4726058f87fe3d5b0c69 authored by Dirk Roorda on 31 May 2022, 19:58:39 UTC
bug fix in search templates with feature lines preceding a quantifier
Tip revision: 6f99f5d
srun.py
from subprocess import run

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