godot-start/script/demo01_hello/hello_world.gd

12 lines
193 B
GDScript

extends Node2D
# Declare member variables here. Examples:
# var a = 2
# var b = "text"
# Called when the node enters the scene tree for the first time.
func _ready():
print("Hello World")