hello-world.py 137 B

12345678
  1. #!/usr/bin/python
  2. from gi.repository import Gtk
  3. win = Gtk.Window()
  4. win.connect("delete-event", Gtk.main_quit)
  5. win.show_all()
  6. Gtk.main()