view ide/runide.py @ 1:92df07bc2081

Initial import of compiler
author windel
date Sun, 18 Sep 2011 19:00:29 +0200
parents
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_()