/* Test alternative syntaxes only */ /* Alternative 1: Parenthesized */ test2 : (-5) + 3; /* Alternative 2: Using negate function */ test3 : negate 5 + 3; /* Alternative 3: Using subtract */ test4 : 0 - 5 + 3; ..out test2; ..out test3; ..out test4;