https://github.com/annotation/text-fabric
Raw File
Tip revision: 4a66a10ee98ec6272bc6cee729a9a731cb83db0c authored by Dirk Roorda on 22 February 2023, 11:38:51 UTC
added a generic XML converter
Tip revision: 4a66a10
srun.py
from subprocess import run

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