2013-11-13 07:10:52 -08:00
|
|
|
// Infix.
|
2013-12-21 19:25:09 -08:00
|
|
|
IO.write(5 - 3) // expect: 2
|
|
|
|
|
IO.write(3.1 - 0.24) // expect: 2.86
|
|
|
|
|
IO.write(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
|
2013-12-21 19:25:09 -08:00
|
|
|
IO.write(-a) // expect: -3
|
2013-11-13 07:10:52 -08:00
|
|
|
|
2013-12-14 15:28:18 -08:00
|
|
|
// TODO: Unsupported RHS types.
|