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