1 2 3 4 5
-- v2.15 P2.5 (5.2): no integer/float distinction (all numbers are number). print(type(1)) print(type(1.0)) print(1 / 2) -- 0.5 print(1 == 1.0) -- true