From 724f52ad81b4ea174dac81d3e60ed9ab1d02d27b Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Wed, 1 Apr 2020 05:30:40 +1300 Subject: [PATCH] Added Gdscript Fixes: #603 Co-Authored-By: OpenLightGames --- README.md | 1 + g/gdscript.gd | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 g/gdscript.gd 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"