git @ Cat's Eye Technologies kinoje / 0.4 bin / kinoje-compile
0.4

Tree @0.4 (Download .tar.gz)

kinoje-compile @0.4raw · history · blame

#!/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()