diff --git a/README.md b/README.md index 768b16589..9f057178c 100755 --- a/README.md +++ b/README.md @@ -260,6 +260,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Gaml](g/GAML.gaml) * [Gammaplex](g/gammaplex.gammaplex) * [Gasoil](g/GASOIL.gasoil) +* [Gdscript](g/gdscript.gd) * [Gecho](g/gecho.gecho) * [Gentzen](g/gentzen.gentzen) * [Geojson](g/geojson.geojson) diff --git a/g/gdscript.gd b/g/gdscript.gd new file mode 100644 index 000000000..038e3bc49 --- /dev/null +++ b/g/gdscript.gd @@ -0,0 +1,4 @@ +extends Label + +func _ready(): + self.text = "Hello World"