standalone_expression.gd 200 B

123456789
  1. func test():
  2. # The following statements should all be reported as standalone expressions:
  3. "This is a standalone expression"
  4. 1234
  5. 0.0 + 0.0
  6. Color(1, 1, 1)
  7. Vector3.ZERO
  8. [true, false]
  9. float(125)