Files
wren/test/core/number/plus.wren
T

4 lines
115 B
Plaintext
Raw Normal View History

2015-09-15 07:46:09 -07:00
System.print(1 + 2) // expect: 3
System.print(12.34 + 0.13) // expect: 12.47
System.print(3 + 5 + 2) // expect: 10