18 lines
306 B
Python
Executable File
18 lines
306 B
Python
Executable File
#!/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)
|