On 09/09/2019 15:11, James Richters wrote:
If (I>86) And (I<95) then Continue; What does continue do exactly? Loop back to the beginning of the for loop right away?
Hi James,Yes in effect -- it jumps forward to the test at the end of a loop. Very useful.
See: https://www.freepascal.org/docs-html/rtl/system/continue.html cheers, Martin. _______________________________________________ fpc-pascal maillist - [email protected] https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
