On Wed, Sep 23, 2020 at 4:25 PM dano none via fpc-pascal <[email protected]> wrote:
for i := start to stop do for j := start2 to stop 2 do CompoundStatement if functionally the same as for i := start to stop do begin for j := start2 to stop 2 do CompoundStatement end; A Compound Statement is a statement that consists of more than one statement and as such must be enclosed in a begin/end pair. Bart -- Bart _______________________________________________ fpc-pascal maillist - [email protected] https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
