From 9cf58b9ed36af51c94e603e906c35d14593ee456 Mon Sep 17 00:00:00 2001 From: calgary34 <51468959+calgary34@users.noreply.github.com> Date: Thu, 23 Dec 2021 15:00:38 -0700 Subject: [PATCH 1/3] Add Tkinter (#1192) * Add Tkinter * Run update_list.py * increment language count * add DOG back to the languages list --- readme.md | 5 +++-- t/Tkinter.py | 5 +++++ 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 t/Tkinter.py 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() From 16adcf047efc60926906288bfd4b298fc27aad35 Mon Sep 17 00:00:00 2001 From: Arcturus <44707562+arcturus140@users.noreply.github.com> Date: Fri, 24 Dec 2021 01:32:03 +0000 Subject: [PATCH 2/3] Add CMake (#1195) --- c/CMake.cmake | 1 + readme.md | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 c/CMake.cmake diff --git a/c/CMake.cmake b/c/CMake.cmake new file mode 100644 index 00000000..036aeb5c --- /dev/null +++ b/c/CMake.cmake @@ -0,0 +1 @@ +message("Hello World") diff --git a/readme.md b/readme.md index dde52f3c..c7e85433 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 (845 total) +## Languages (846 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) @@ -260,6 +260,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [CLISP](c/CLISP.lisp) * [Clojure](c/Clojure.clj) * [CLU](c/CLU.clu) +* [CMake](c/CMake.cmake) * [COBOL](c/COBOL.cbl) * [CobolScript](c/CobolScript.cbl) * [Cobra](c/Cobra.cobra) From a06804bffc2af15a2cb43e71aee0c851b8a87625 Mon Sep 17 00:00:00 2001 From: MrBrain295 <66077254+MrBrain295@users.noreply.github.com> Date: Thu, 23 Dec 2021 19:33:41 -0600 Subject: [PATCH 3/3] Meta tweak --- .github/pull_request_template.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 96aabbac..ff7a49c0 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -3,3 +3,5 @@ - [ ] The code displays "Hello World" - [ ] I have updated the readme to include the new language - [ ] I have incremented the language count in the readme + +#### Link to programming language: