view python/ide/runide.py @ 62:fd7d5069734e

Rename application to python
author windel
date Sun, 07 Oct 2012 16:56:50 +0200
parents applications/ide/runide.py@600f48b74799
children
line wrap: on
line source

import sys
from PyQt4.QtGui import QApplication

# Compiler imports:
from compiler.compiler import Compiler
from ide.ide import Ide

if __name__ == '__main__':
   app = QApplication(sys.argv)
   ide = Ide()
   ide.compiler = Compiler()
   ide.show()
   app.exec_()