1 2 3 4 5 6 7 8 9 10 11 12
#!/usr/bin/env python from os.path import realpath, dirname, join import sys sys.path.insert(0, join(dirname(realpath(sys.argv[0])), '..', 'src')) from kinoje import compiler if __name__ == '__main__': compiler.main()