standalone_ternary.gd 63 B

1234
  1. func test():
  2. 1 if true else 2
  3. print(1) if true else print(2)