5 lines
67 B
Python
5 lines
67 B
Python
import gtk
|
|
|
|
window = gtk.Window()
|
|
window.show()
|
|
gtk.main()
|