View Single Post
Captwheeto's Avatar
Posts: 302 | Thanked: 193 times | Joined on Oct 2008 @ England
#13
Overly complex? No way. Let me show you something approaching malbolge levels of complexity with this bad boy in Python + Qt4

Code:
#!/usr/bin/env python
 
 import sys
 from PyQt4 import Qt
 
 a = Qt.QApplication(sys.argv)
 
 hello = Qt.QLabel("Hello, World")
 hello.show()
 
 a.exec_()