XL Fortran for AIX 8.1

Language Reference

CONTINUE

Purpose

The CONTINUE statement is an executable control statement that takes no action; it has no effect. This statement is often used as the terminal statement of a loop.

Format



>>-CONTINUE----------------------------------------------------><
 
 

Examples

     DO 100 I = 1,N
        X = X + N
100  CONTINUE

Related Information

Chapter 6, Control


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]