https://github.com/annotation/text-fabric
Raw File
Tip revision: 3bbada95e9216904cc8b12c2fd4ecf77cbf5fdf1 authored by Dirk Roorda on 09 October 2018, 15:57:26 UTC
optimal incantation
Tip revision: 3bbada9
srun.py
from subprocess import run

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