Files
wren/test/number/plus.wren
2014-01-08 07:47:14 -08:00

4 lines
103 B
Plaintext

IO.print(1 + 2) // expect: 3
IO.print(12.34 + 0.13) // expect: 12.47
IO.print(3 + 5 + 2) // expect: 10