integer_division.gd 178 B

12345678910
  1. func test():
  2. # This should emit a warning.
  3. var __ = 5 / 2
  4. # These should not emit warnings.
  5. __ = float(5) / 2
  6. __ = 5 / float(2)
  7. __ = 5.0 / 2
  8. __ = 5 / 2.0
  9. __ = 5.0 / 2.0