[62c3c4]: / test / expr-unary.test.expected  Maximize  Restore  History

Download this file

12 lines (11 with data), 133 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
FUNCTION test:DINT;
a: DINT;
b: POINTER TO DINT;
  a := -1;
 a := +2;
 a := ~4;
 a := b^;
 a := -a;
 a := +a;
 a := ~a;
END_FUNCTION