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.
END IF
                                             Up Contents Index Back
─────END IF─────────────────────────────────────────────────────────────────
 
     Action
 
     Terminates a block IF statement
 
     Syntax
 
     END IF
 
     Remarks
 
     There must be a matching END IF statement for every block IF
     statement in a program unit.
 
     Example
 
           IF (n .LT. 0) THEN
             x = -n
             y = -n
           END IF
                                    -♦-