Merge branch 'master' into master

This commit is contained in:
Tyler887
2021-12-24 10:08:43 +00:00
committed by GitHub
4 changed files with 12 additions and 1 deletions

View File

@@ -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:

1
c/CMake.cmake Normal file
View File

@@ -0,0 +1 @@
message("Hello World")

View File

@@ -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 start-->
## 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)

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()