Files
wren/test/math/floor.wren
T

5 lines
162 B
Plaintext
Raw Normal View History

IO.print(Math.floor(2.3)) // expect: 2
IO.print(Math.floor(3.8)) // expect: 3
IO.print(Math.floor(-2.3)) // expect: -3
IO.print(Math.floor(-3.8)) // expect: -4