Files
wren/test/number/multiply.wren
T

5 lines
102 B
Plaintext
Raw Normal View History

IO.write(5 * 3) // expect: 15
IO.write(12.34 * 0.3) // expect: 3.702
2013-10-31 07:04:44 -07:00
// TODO: Unsupported RHS types.