Added Gdscript

Fixes: #603
Co-Authored-By: OpenLightGames <jshlw@users.noreply.github.com>
This commit is contained in:
Richie Bendall
2020-04-01 05:30:40 +13:00
parent 01c168566e
commit 724f52ad81
2 changed files with 5 additions and 0 deletions

View File

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

4
g/gdscript.gd Normal file
View File

@@ -0,0 +1,4 @@
extends Label
func _ready():
self.text = "Hello World"