mirror of
https://github.com/tiennm99/godot.git
synced 2026-07-15 11:11:02 +00:00
5 lines
79 B
GDScript
5 lines
79 B
GDScript
func test():
|
|
print(20 + 20)
|
|
print("hello" + "world")
|
|
print([1, 2] + [3, 4])
|