Files
wren/test/number/multiply.wren
2013-12-21 19:25:09 -08:00

5 lines
102 B
Plaintext

IO.write(5 * 3) // expect: 15
IO.write(12.34 * 0.3) // expect: 3.702
// TODO: Unsupported RHS types.