Visible to Intel only — GUID: GUID-CC41AE85-3890-4E6E-9D84-7539F7EC33AD
Visible to Intel only — GUID: GUID-CC41AE85-3890-4E6E-9D84-7539F7EC33AD
Names
Names identify entities within a Fortran program unit (such as variables, function results, common blocks, named constants, procedures, program units, namelist groups, and dummy arguments). In FORTRAN 77, names were called "symbolic names".
A name can contain letters, digits, underscores ( _ ), and the dollar sign ($) special character. The first character must be a letter or a dollar sign.
In Fortran 2018 and Fortran 2008, a name can contain up to 63 characters.
The length of a module name (in MODULE and USE statements) may be restricted by your file system.
Be careful when defining names that contain dollar signs. A dollar sign can be a symbol for command or symbol substitution in various shell and utility commands.
In an executable program, the names of the following entities are global and must be unique in the entire program:
Program units
External procedures
Common blocks
Modules
Examples
The following examples demonstrate valid and invalid names:
NUMBER |
FIND_IT |
X |
5Q |
Begins with a numeral. |
B.4 |
Contains a special character other than _ or $. |
_WRONG |
Begins with an underscore. |
The following are all valid examples of using names:
INTEGER (SHORT) K !K names an integer variable SUBROUTINE EXAMPLE !EXAMPLE names the subroutine LABEL: DO I = 1,N !LABEL names the DO block