Files
wren/test/number/multiply.wren
T

5 lines
107 B
Plaintext
Raw Normal View History

2013-10-31 07:04:44 -07:00
io.write(5 * 3) // expect: 15
2013-11-09 21:32:57 -08:00
io.write(12.34 * 0.3) // expect: 3.702
2013-10-31 07:04:44 -07:00
// TODO(bob): Unsupported RHS types.