https://github.com/annotation/text-fabric
Raw File
Tip revision: ea6dcdc46b416d2cc26e5f8c1971491e8f23b494 authored by Dirk Roorda on 04 December 2022, 19:22:14 UTC
adapts to running on iPad
Tip revision: ea6dcdc
srun.py
from subprocess import run

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