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: 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 f40e860b..6cc76c0d 100644 --- a/readme.md +++ b/readme.md @@ -8,6 +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) * [!@#$%^&*()_+](%23/%21%40%23%24%25%5E%26%E2%88%97%28%29_%2B) @@ -260,6 +261,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) @@ -768,12 +770,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()