Files
wren/test/number/divide.wren
T

6 lines
135 B
Plaintext
Raw Normal View History

2014-01-05 12:27:12 -08:00
IO.print(8 / 2) // expect: 4
IO.print(12.34 / -0.4) // expect: -30.85
2013-10-31 07:04:44 -07:00
// TODO: Unsupported RHS types.
// TODO: Divide by zero.