5 lines
110 B
GDScript
5 lines
110 B
GDScript
func test():
|
|
print(true + true)
|
|
print({"hello": "world"} + {"godot": "engine"})
|
|
print("hello" + ["world"])
|