Create 1-first-step.py

This commit is contained in:
Alperen İsa 2021-08-30 15:04:52 +03:00 committed by GitHub
parent e0f53e9470
commit 8f7df07bfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

9
vanilla/1-first-step.py Normal file
View File

@ -0,0 +1,9 @@
import gi
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk
win = Gtk.Window()
win.connect("destroy", Gtk.main_quit)
win.show_all()
Gtk.main()