forlang.hlp (Table of Contents; Topic list)
Names
                                             Up Contents Index Back
─────Names─────────────────────────────────────────────────────────────────
 
     FORTRAN names are subject to the following restrictions:
 
     ■ The first character in a name must be alphabetic; the rest must
       be alphanumeric or $ or _.
 
     ■ Names can contain up to 31 characters; all characters are
       significant. (In ANSI FORTRAN, identifiers can contain up to six
       characters.)
 
     See also: $STRICT
 
     Global and Local Names
 
     Global names are recognized anywhere in a program. They can have
     only one definition. All subroutine, function, program, and
     common-block names are global.
 
     Common-block names are a special case of global names. You can use
     the same name for a common block and a local name in the same
     program. This is permitted because common-block names are always
     enclosed in slashes.
 
     Local names have meaning only in the program unit in which they are
     declared. All variables, arrays, arguments, and statement functions
     have local names.
                                    -♦-