From anonymous, 3 Months ago, written in Python.
Embed
  1. from PyQt5.QtWidgets import QApplication, QWidget
  2.  
  3. app = QApplication([])
  4. w = QWidget()
  5. w.setWindowTitle("— x")
  6. w.show()
  7. app.exec()