diff --git a/readme.md b/readme.md index 6dcc33fb..dde52f3c 100644 --- a/readme.md +++ b/readme.md @@ -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 (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) diff --git a/t/Tkinter.py b/t/Tkinter.py new file mode 100644 index 00000000..ba682ba0 --- /dev/null +++ b/t/Tkinter.py @@ -0,0 +1,5 @@ +import tkinter as tk +root = tk.Tk() +greeting = tk.Label(text="Hello World") +greeting.pack() +root.mainloop()