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

Download this file

7 lines (5 with data), 102 Bytes

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

END_FUNCTION