mirror of
https://github.com/godotengine/godot.git
synced 2026-04-18 09:51:15 +00:00
4 lines
110 B
GDScript
4 lines
110 B
GDScript
func test():
|
|
print(true + true)
|
|
print({"hello": "world"} + {"godot": "engine"})
|
|
print("hello" + ["world"])
|