I have following code:
if a then b else c;
JCF wrap b and c into begin end block:
if a then begin b end else begin c; end;
How can I avoid this? Thanks.
Log in to post a comment.