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

9 lines
188 B
Plaintext
Raw Normal View History

2013-11-13 07:10:52 -08:00
// Infix.
2015-09-15 07:46:09 -07:00
System.print(5 - 3) // expect: 2
System.print(3.1 - 0.24) // expect: 2.86
System.print(3 - 2 - 1) // expect: 0
2013-10-31 07:04:44 -07:00
2013-11-13 07:10:52 -08:00
// Unary negation.
var a = 3
2015-09-15 07:46:09 -07:00
System.print(-a) // expect: -3