diff --git a/g/Gleam.gleam b/g/Gleam.gleam new file mode 100644 index 00000000..54fbd69d --- /dev/null +++ b/g/Gleam.gleam @@ -0,0 +1,5 @@ +import gleam/io + +pub fn main() { + io.println("Hello World") +} diff --git a/readme.md b/readme.md index 04b0a1f7..827e022c 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 (939 total) +## Languages (941 total) * [!](%23/%21) * [!@#$%^&*()_+](%23/%21%40%23%24%25%5E%26%E2%88%97%28%29_%2B) @@ -293,6 +293,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [DNA#](d/DNA%23.dna) * [DNCL](d/DNCL.dncl) * [Dog](d/Dog) +* [DOG](d/DOG) * [DogeScript](d/DogeScript.djs) * [DOGO](d/DOGO.dogo) * [dongbei](d/dongbei.dongbei) @@ -390,6 +391,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [Gibberish](g/Gibberish.gibberish) * [GitHub Actions](g/GitHub%20Actions.yaml) * [Glass](g/Glass.glass) +* [Gleam](g/Gleam.gleam) * [GML](g/GML.gml) * [Go](g/Go.go) * [Gocaml](g/Gocaml.ml) @@ -867,7 +869,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [Unlambda](u/Unlambda.unl) * [Unreal Script](u/Unreal%20Script.uc) * [UrduPython](u/UrduPython.py) -* [UwU](u/uwu.uwupp) +* [uwu](u/uwu.uwupp) * [V](v/V) * [V](v/V.v) * [Vala](v/Vala.vala) @@ -891,6 +893,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [Vowels](v/Vowels.vw) * [VRML](v/VRML.wrl) * [Vue](v/Vue.js) +* [Wax](w/Wax.wax) * [WebAssembly](w/WebAssembly.wat) * [Wheat](w/Wheat.wheat) * [Whenever](w/Whenever.whenever) @@ -907,7 +910,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [wxPython](w/wxPython.py) * [Wyvern](w/Wyvern.wyv) * [X D](x/X%20D.xd) -* [X++](x/X++.xpp) +* [X++](x/X%2B%2B.xpp) * [X10](x/X10.x10) * [XBase++](x/XBase%2B%2B.prg) * [XBase](x/XBase.dbf) diff --git a/w/Wax.wax b/w/Wax.wax new file mode 100644 index 00000000..38868031 --- /dev/null +++ b/w/Wax.wax @@ -0,0 +1,4 @@ +(func main (result int) + (print "Hello World") + (return 0) +)