RosettaCodeData/Task/Window-creation/Python/window-creation-4.py

6 lines
67 B
Python

import gtk
window = gtk.Window()
window.show()
gtk.main()