Add Tkinter (#1192)
* Add Tkinter * Run update_list.py * increment language count * add DOG back to the languages list
This commit is contained in:
5
t/Tkinter.py
Normal file
5
t/Tkinter.py
Normal file
@@ -0,0 +1,5 @@
|
||||
import tkinter as tk
|
||||
root = tk.Tk()
|
||||
greeting = tk.Label(text="Hello World")
|
||||
greeting.pack()
|
||||
root.mainloop()
|
||||
Reference in New Issue
Block a user