concatenation.gd 79 B

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