view applications/ide/runide.py @ 45:8a52263d67c4

Fixed width of library
author windel
date Sat, 18 Feb 2012 17:09:21 +0100
parents 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_()