This commit is contained in:
Михаил Капелько
2024-04-02 23:29:23 +03:00
parent 4122ffd816
commit fb1eb55faf
5 changed files with 171 additions and 2 deletions

17
tr-Python-C++/translate Executable file
View File

@@ -0,0 +1,17 @@
#!/usr/bin/env python3
import os
import sys
from process import *
DIR = os.path.dirname(os.path.realpath(sys.argv[0]))
# Demand file as input
if len(sys.argv) < 2:
print("Usage: /path/to/translate PYTHON_FILE")
sys.exit(1)
FILE_IN = sys.argv[1]
# Translate file.
out = process(FILE_IN)
print(out)