expression_with_+-.gravity 142 B

12345678910
  1. #unittest {
  2. name: "expression with +- and -+ sequences.";
  3. error: NONE;
  4. result: -9;
  5. };
  6. func main () {
  7. var a = (2+-3)*4-+5;
  8. return a;
  9. }