[c6a232]: / test / expr-unary.test.log  Maximize  Restore  History

Download this file

10 lines (9 with data), 111 Bytes

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