Files
wren/test/math/ceil.wren
T

5 lines
158 B
Plaintext
Raw Normal View History

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