forlang.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
CONTINUE
                                             Up Contents Index Back
─────CONTINUE───────────────────────────────────────────────────────────────
 
     Action
 
     Does not have any effect.
 
     Syntax
 
     CONTINUE
 
     Remarks
 
     The CONTINUE statement is a convenient place for a label,
     particularly as the terminal statement in a DO or DO WHILE loop.
 
     Example
 
           DIMENSION narray(10)
           DO 100, n = 1, 10
           narray(n) = 120
       100 CONTINUE
                                    -♦-