Merge branch 'master' into master
This commit is contained in:
2
.github/pull_request_template.md
vendored
2
.github/pull_request_template.md
vendored
@@ -3,3 +3,5 @@
|
|||||||
- [ ] The code displays "Hello World"
|
- [ ] The code displays "Hello World"
|
||||||
- [ ] I have updated the readme to include the new language
|
- [ ] I have updated the readme to include the new language
|
||||||
- [ ] I have incremented the language count in the readme
|
- [ ] I have incremented the language count in the readme
|
||||||
|
|
||||||
|
#### Link to programming language:
|
||||||
|
|||||||
1
c/CMake.cmake
Normal file
1
c/CMake.cmake
Normal file
@@ -0,0 +1 @@
|
|||||||
|
message("Hello World")
|
||||||
@@ -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!
|
Make sure to see [contributing.md](/contributing.md) for instructions on contributing to the project!
|
||||||
|
|
||||||
<!--Languages start-->
|
<!--Languages start-->
|
||||||
|
|
||||||
## Languages (845 total)
|
## Languages (845 total)
|
||||||
|
|
||||||
* [!@#$%^&*()_+](%23/%21%40%23%24%25%5E%26%E2%88%97%28%29_%2B)
|
* [!@#$%^&*()_+](%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)
|
* [CLISP](c/CLISP.lisp)
|
||||||
* [Clojure](c/Clojure.clj)
|
* [Clojure](c/Clojure.clj)
|
||||||
* [CLU](c/CLU.clu)
|
* [CLU](c/CLU.clu)
|
||||||
|
* [CMake](c/CMake.cmake)
|
||||||
* [COBOL](c/COBOL.cbl)
|
* [COBOL](c/COBOL.cbl)
|
||||||
* [CobolScript](c/CobolScript.cbl)
|
* [CobolScript](c/CobolScript.cbl)
|
||||||
* [Cobra](c/Cobra.cobra)
|
* [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)
|
* [TI Hexadecimal](t/TI%20Hexadecimal.hex)
|
||||||
* [TIBasic](t/TIBasic.ti)
|
* [TIBasic](t/TIBasic.ti)
|
||||||
* [TK](t/TK.tk)
|
* [TK](t/TK.tk)
|
||||||
|
* [Tkinter](t/Tkinter.py)
|
||||||
* [TOML](t/TOML.toml)
|
* [TOML](t/TOML.toml)
|
||||||
* [Trans-dimensional](t/Trans-dimensional)
|
* [Trans-dimensional](t/Trans-dimensional)
|
||||||
* [Tri](t/Tri.tri)
|
* [Tri](t/Tri.tri)
|
||||||
* [TrollScript](t/TrollScript.troll)
|
* [TrollScript](t/TrollScript.troll)
|
||||||
* [TrumpScript](t/TrumpScript.py)
|
* [TrumpScript](t/TrumpScript.py)
|
||||||
* [TSharp](t/TSharp.t#)
|
* [TSharp](t/TSharp.t%23)
|
||||||
* [TSQL](t/TSQL.sql)
|
* [TSQL](t/TSQL.sql)
|
||||||
* [TTCN3](t/TTCN3.ttcn)
|
* [TTCN3](t/TTCN3.ttcn)
|
||||||
* [Turing](t/Turing.oot)
|
* [Turing](t/Turing.oot)
|
||||||
|
|||||||
5
t/Tkinter.py
Normal file
5
t/Tkinter.py
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
import tkinter as tk
|
||||||
|
root = tk.Tk()
|
||||||
|
greeting = tk.Label(text="Hello World")
|
||||||
|
greeting.pack()
|
||||||
|
root.mainloop()
|
||||||
Reference in New Issue
Block a user