debian-quixote3/quixote/ptl/ptlrun.py

8 lines
175 B
Python
Executable File

#!/usr/bin/env python3
import sys
from quixote.ptl.ptl_compile import compile_template
if __name__ == '__main__':
exec(compile_template(open(sys.argv[1]), sys.argv[1]))