Files
wren/test/math/frac.wren
T

5 lines
172 B
Plaintext
Raw Normal View History

IO.print(Math.frac(8)) // expect: 0
IO.print(Math.frac(12.34)) // expect: 0.34
IO.print(Math.frac(-8)) // expect: -0
IO.print(Math.frac(-12.34)) // expect: -0.34