Jump to content

GDScript

From Simple English Wikipedia, the free encyclopedia
Revision as of 05:09, 2 March 2025 by 2607:f140:6000:802a:78ca:262b:852b:1fdf (talk)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
An overview of the language.

GDScript is a programming language that is used for the game engine Godot. This language is similar to Python, with syntax and arguments alike.

Here is an example of the GDScript Language:

extends Sprite2d

# This code is going to print Hello World.

func _ready():
    print("Hello World!")

Reference

[change | change source]

https://docs.godotengine.org/en/stable/getting_started/introduction/index.html