12 lines
118 B
Python
12 lines
118 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import orig
|
||
|
|
||
|
|
||
|
def main():
|
||
|
orig.write_translated()
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|