added PyQt5 Hello World

This commit is contained in:
Wayne Glettig
2020-03-23 21:29:54 +01:00
parent 427b40fc8c
commit c32aec1678

View File

@@ -0,0 +1,6 @@
from PyQt5 import QtWidgets
app = QtWidgets.QApplication([])
window = QtWidgets.QWidget(windowTitle='Hello Qt')
window.show()
app.exec()