https://github.com/annotation/text-fabric
Raw File
Tip revision: 97047a7aa88b10288ddc787efd40fa1cb9e3f7f2 authored by Dirk Roorda on 20 May 2019, 19:38:38 UTC
version number glitch
Tip revision: 97047a7
srun.py
from subprocess import run

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