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

Download this file

6 lines (5 with data), 101 Bytes

1
2
3
4
5
FUNCTION func:BOOL;
a := b * ( c + d ) * e;
 a := b * ( (c:=c+1) );
 a := b * (c:=c+1);
END_FUNCTION