Files
wren/test/number/plus.wren
T

6 lines
136 B
Plaintext
Raw Normal View History

2014-01-05 12:27:12 -08:00
IO.print(1 + 2) // expect: 3
IO.print(12.34 + 0.13) // expect: 12.47
IO.print(3 + 5 + 2) // expect: 10
2013-10-31 07:04:44 -07:00
// TODO: Unsupported RHS types.