godot-start/script/demo01_hello/hello_world.gd

12 lines
193 B
GDScript
Raw Normal View History

2021-09-12 10:07:51 +00:00
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")