https://github.com/annotation/text-fabric
Raw File
Tip revision: 1ce16c48975affcde9462298dc6f7163521ede51 authored by Dirk Roorda on 14 June 2021, 11:29:11 UTC
small fixes in distribution
Tip revision: 1ce16c4
srun.py
from subprocess import run

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