https://github.com/annotation/text-fabric
Raw File
Tip revision: f569607ddd533747eab624d64fd6dea9e65b4c54 authored by Dirk Roorda on 26 August 2021, 13:05:01 UTC
fix in rtl of section headings
Tip revision: f569607
srun.py
from subprocess import run

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