godot-start/scene/demo01_hello/script/HelloWorld.gd

8 lines
125 B
GDScript

extends Node2D
# Called when the node enters the scene tree for the first time.
func _ready():
print("Hello World")
pass