HelloWorld.gd 330 B

123456789101112
  1. extends Node
  2. func _ready():
  3. # Prints hello world to the output console
  4. print("Hello World!")
  5. # The course I am enroled in, made a challenge where you
  6. # had to create a variable and print "What are you waiting for? GODOT"
  7. # in the output console as well
  8. var challenge = "What are we waiting for? GODOT!"
  9. print(challenge)