https://github.com/annotation/text-fabric
Raw File
Tip revision: 4bb9e1a4f4dea7ee76bb6c1255ca5b9935cb755b authored by Dirk Roorda on 15 February 2024, 10:54:30 UTC
watm docs
Tip revision: 4bb9e1a
srun.py
from subprocess import run

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