view ide/runide.py @ 4:0d5ef85b8698

Improved link between ast viewer and code edit
author windel-eee
date Wed, 21 Sep 2011 19:05:18 +0200
parents 92df07bc2081
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_()