godot/modules/gdscript/tests/scripts/parser/features/concatenation.gd

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
79 B
GDScript3
Raw Normal View History

func test():
print(20 + 20)
print("hello" + "world")
print([1, 2] + [3, 4])