FORTRAN Reference Manual

Syntax Summary
FORTRAN Reference Manual528615-001
B-4
FORTRAN Statements
dimension
is:
( [ lower:] upper [, [ lower:] upper ]... )
Specifies that the symbolic name of a constant, variable, array, RECORD field,
function, or dummy procedure is double precision type.
Identifies the end of a block of statements that was preceded by an IF or ELSE IF
statement, and the beginning of a block of statements to execute if all preceding IF and
ELSE IF tests were false. The block of statements introduced by the ELSE statement
must be followed by an END IF statement.
Identifies the end of a block of statements that was preceded by an IF or ELSE IF
statement, and the beginning of a block of statements to execute if all preceding IF and
ELSE IF tests were false. The block of statements introduced by the ELSE IF
statement can be followed by an another ELSE IF statement or by an END IF
statement.
Identifies the physical end of a program unit.
Identifies the end of a block of statements that was preceded by an IF, ELSE IF, or
ELSE statement. END IF terminates unconditionally a sequence of statements that
begins with an IF statement.
DOUBLE PRECISION name [ dimension ] [, name [ dimension ]
]...
ELSE
ELSE IF
END
END IF