Files
wren/test/math/int.wren
T

5 lines
164 B
Plaintext
Raw Normal View History

IO.print(Math.int(8)) // expect: 8
IO.print(Math.int(12.34)) // expect: 12
IO.print(Math.int(-8)) // expect: -8
IO.print(Math.int(-12.34)) // expect: -12