29ce2e142f
- Require python 2.3+ PR: ports/79851 Submitted by: Dryice Liu <dryice@liu.com.cn> (maintainer)
5 lines
123 B
Python
5 lines
123 B
Python
import sys
|
|
from quixote.ptl import ptl_compile
|
|
|
|
for srcfile in sys.argv[1:]:
|
|
ptl_compile.compile(srcfile, srcfile + 'c')
|