Mercurial > lcfOS
view applications/ide/runide.py @ 56:7a82f0d52e85
Cleanup of line selection
author | windel |
---|---|
date | Sun, 22 Apr 2012 13:32:09 +0200 |
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_()