diff --git a/g/GDScript.gd b/g/GDScript.gd index 038e3bc4..2d4aa13d 100644 --- a/g/GDScript.gd +++ b/g/GDScript.gd @@ -1,4 +1,4 @@ -extends Label +extends Node2D -func _ready(): - self.text = "Hello World" +func _init(): + print("Hello World")