Add Tkinter (#1192)

* Add Tkinter

* Run update_list.py

* increment language count

* add DOG back to the languages list
This commit is contained in:
calgary34
2021-12-23 15:00:38 -07:00
committed by GitHub
parent 4083bb5f55
commit 9cf58b9ed3
2 changed files with 8 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every
Make sure to see [contributing.md](/contributing.md) for instructions on contributing to the project!
<!--Languages start-->
## Languages (844 total)
## Languages (845 total)
* [!@#$%^&*()_+](%23/%21%40%23%24%25%5E%26%E2%88%97%28%29_%2B)
* [():;#?!](%23/%28%29%CB%B8%3B%23%EF%BC%9F%21)
@@ -767,12 +767,13 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib
* [TI Hexadecimal](t/TI%20Hexadecimal.hex)
* [TIBasic](t/TIBasic.ti)
* [TK](t/TK.tk)
* [Tkinter](t/Tkinter.py)
* [TOML](t/TOML.toml)
* [Trans-dimensional](t/Trans-dimensional)
* [Tri](t/Tri.tri)
* [TrollScript](t/TrollScript.troll)
* [TrumpScript](t/TrumpScript.py)
* [TSharp](t/TSharp.t#)
* [TSharp](t/TSharp.t%23)
* [TSQL](t/TSQL.sql)
* [TTCN3](t/TTCN3.ttcn)
* [Turing](t/Turing.oot)

5
t/Tkinter.py Normal file
View File

@@ -0,0 +1,5 @@
import tkinter as tk
root = tk.Tk()
greeting = tk.Label(text="Hello World")
greeting.pack()
root.mainloop()