This commit is contained in:
Михаил Капелько
2024-03-29 23:23:50 +03:00
parent 9a17647cc2
commit 110b44030d
7 changed files with 11 additions and 3 deletions

17
_translator-C++-Swift/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 CPP_FILE")
sys.exit(1)
FILE_IN = sys.argv[1]
# Translate file.
out = process(FILE_IN)
print(out)