Erster Code hinzugefügt

This commit is contained in:
2023-10-31 13:20:20 +01:00
parent 850f77656c
commit 5ec46bef57

View File

@@ -0,0 +1,10 @@
from PyQt5.QtWidgets import *
class main(QWidget):
def __init__(self):
super().__init__()
app = QApplication([])
window = main()
window.show()
app.exec()