The first manual for FORTRAN describes it as aFormula Translating System, and printed the name withsmall caps,Fortran.[10]: p.2 [11] Other sources suggest the name stands forFormula Translator,[12] orFormula Translation.[13]
Early IBM computers did not supportlowercase letters, and the names of versions of the language through FORTRAN 77 were usually spelled in all-uppercase.[14] FORTRAN 77 was the last version in which the Fortran character set included only uppercase letters.[15]
The official languagestandards for Fortran have referred to the language as "Fortran" with initial caps since Fortran 90.[citation needed]
The Fortran Automatic Coding System for theIBM 704 (October 15, 1956), the first programmer's reference manual for Fortran[10]
A draft specification forThe IBM Mathematical Formula Translating System was completed by November 1954.[11]: 71 The first manual for FORTRAN appeared in October 1956,[10][11]: 72 with the first FORTRANcompiler delivered in April 1957.[11]: 75 Fortran produced efficient enough code forassembly language programmers to accept ahigh-level programming language replacement.[18]
John Backus said during a 1979 interview withThink, the IBM employee magazine, "Much of my work has come from being lazy. I didn't like writing programs, and so, when I was working on theIBM 701, writing programs for computing missile trajectories, I started work on a programming system to make it easier to write programs."[19]
The language was widely adopted by scientists for writing numerically intensive programs, which encouraged compiler writers to produce compilers that could generate faster and more efficient code. The inclusion of acomplex number data type in the language made Fortran especially suited to technical applications such as electrical engineering.[20]
By 1960, versions of FORTRAN were available for theIBM 709,650,1620, and7090 computers. Significantly, the increasing popularity of FORTRAN spurred competing computer manufacturers to provide FORTRAN compilers for their machines, so that by 1963 over 40 FORTRAN compilers existed.
FORTRAN was provided for theIBM 1401 computer by an innovative 63-phase compiler that ran entirely in itscore memory of only 8000 (six-bit) characters. The compiler could be run from tape, or from a 2200-card deck; it used no further tape or disk storage. It kept the program in memory and loadedoverlays that gradually transformed it, in place, into executable form, as described by Haines.[21]This article was reprinted, edited, in both editions ofAnatomy of a Compiler[22] and in the IBM manual "Fortran Specifications and Operating Procedures, IBM 1401".[23] The executable form was not entirelymachine language; rather, floating-point arithmetic, sub-scripting, input/output, and function references were interpreted, precedingUCSD PascalP-code by two decades.GOTRAN, a simplified, interpreted version of FORTRAN I (with only 12 types of statements not 32) for "load and go" operation was available (at least for the earlyIBM 1620 computer).[24] Modern Fortran, and almost all later versions, are fully compiled, as done for other high-performance languages.
The development of Fortran paralleled theearly evolution of compiler technology, and many advances in the theory and design ofcompilers were specifically motivated by the need to generate efficient code for Fortran programs.
The initial release of FORTRAN for the IBM 704[10] contained 32 types ofstatements, including:
DIMENSION andEQUIVALENCE statements
Assignment statements
Three-wayarithmeticIF statement (sincedeprecated), which passed control to one of three locations in the program depending on whether the result of the arithmetic expression was negative, zero, or positive
Control statements for checking exceptions (IF ACCUMULATOR OVERFLOW,IF QUOTIENT OVERFLOW, andIF DIVIDE CHECK); and control statements for manipulatingsense switches and sense lights (IF (SENSE SWITCH),IF (SENSE LIGHT), andSENSE LIGHT)
FREQUENCY statement (for providingoptimization hints to the compiler).
The arithmeticIF statement was reminiscent of (but not readily implementable by) a three-way comparison instruction (CAS—Compare Accumulator with Storage) available on the 704. The statement provided the only way to compare numbers—by testing their difference, with an attendant risk of overflow. This deficiency was later overcome by "logical" facilities introduced in FORTRAN IV.
TheFREQUENCY statement was used originally (and optionally) to give branch probabilities for the three branch cases of the arithmeticIF statement. It could also be used to suggest how many iterations aDO loop might run. The first FORTRAN compiler used this weighting to performat compile time aMonte Carlo simulation of the generated code, the results of which were used to optimize the placement of basic blocks in memory—a very sophisticated optimization for its time. The Monte Carlo technique is documented in Backus et al.'s paper on this original implementation,The FORTRAN Automatic Coding System:
The fundamental unit of program is thebasic block; a basic block is a stretch of program which has one entry point and one exit point. The purpose of section 4 is to prepare for section 5 a table of predecessors (PRED table) which enumerates the basic blocks and lists for every basic block each of the basic blocks which can be its immediate predecessor in flow, together with the absolute frequency of each such basic block link. This table is obtained by running the program once in Monte-Carlo fashion, in which the outcome of conditional transfers arising out of IF-type statements and computed GO TO's is determined by a random number generator suitably weighted according to whatever FREQUENCY statements have been provided.[16]
The first FORTRAN compiler reported diagnostic information by halting the program when an error was found and outputting an error code on its console. That code could be looked up by the programmer in an error messages table in the operator's manual, providing them with a brief description of the problem.[10]: p.19–20 [25] Later, an error-handling subroutine to handle user errors such as division by zero, developed by NASA,[26] was incorporated, informing users of which line of code contained the error.
FORTRAN code on apunched card, showing the specialized uses of columns 1–5, 6 and 73–80A pad of FORTRAN coding forms, used by programmers to prepare programs for punching onto cards bykeypunch operators.
Before the development of disk files, text editors and terminals, programs were most often entered on akeypunch keyboard onto 80-columnpunched cards, one line to a card. The resulting deck of cards would be fed into a card reader to be compiled. Punched card codes included no lower-case letters or many special characters, and special versions of the IBM 026keypunch were offered that would correctly print the re-purposed special characters used in FORTRAN.
Reflecting punched card input practice, Fortran programs were originally written in a fixed-column format. A letter "C" in column 1 caused the entire card to be treated as a comment and ignored by the compiler. Otherwise, the columns of the card were divided into four fields:
1 to 5 were the label field: a sequence of digits here was taken as a label for use in DO or control statements such as GO TO and IF, or to identify a FORMAT statement referred to in a WRITE or READ statement. Leading zeros are ignored and 0 is not a valid label number.
6 was a continuation field: a character other than a blank or a zero here caused the card to be taken as a continuation of the statement on the prior card. The continuation cards were usually numbered 1, 2,etc. and the starting card might therefore have zero in its continuation column—which is not a continuation of its preceding card.
7 to 72 contained the statement field.
73 to 80 were ignored (thecard reader for the IBM 704, the computer on which Fortran was developed, could only read 72 columns, placing them into twenty-four 36-bit words).[27]
Columns 73 to 80 could therefore be used for identification information, such as punching a sequence number or text, which could be used to re-order cards if a stack of cards was dropped; though in practice this was reserved for stable, production programs. AnIBM 519 could be used to copy a program deck and add sequence numbers. Some early compilers, e.g., the IBM 650's, had additional restrictions due to limitations on their card readers.[28]Keypunches could be programmed to tab to column 7 and skip out after column 72. Later compilers relaxed most fixed-format restrictions, and the requirement was eliminated in the Fortran 90 standard.
Within the statement field,whitespace characters (blanks) were ignored outside a text literal. This allowed omitting spaces between tokens for brevity or including spaces within identifiers for clarity. For example,AVG OF X was a valid identifier, equivalent toAVGOFX, and101010DO101I=1,101 was a valid statement, equivalent to10101DO101I=1,101 because the zero in column 6 is treated as if it were a space, while101010DO101I=1.101 was instead10101DO101I=1.101, the assignment of 1.101 to a variable calledDO101I. Note the slight visual difference between a comma and a period.
Hollerith strings, originally allowed only in FORMAT and DATA statements, were prefixed by a character count and the letter H (e.g.,26HTHIS IS ALPHANUMERIC DATA.), allowing blanks to be retained within the character string. Miscounts were a problem.
IBM'sFORTRAN II appeared in 1958. The main enhancement was to supportprocedural programming by allowing user-written subroutines and functions which returned values with parameters passed byreference. The COMMON statement provided a way for subroutines to access common (orglobal) variables. Six new statements were introduced:[29]
SUBROUTINE,FUNCTION, andEND
CALL andRETURN
COMMON
Over the next few years, FORTRAN II added support for theDOUBLE PRECISION andCOMPLEX data types.
Early FORTRAN compilers supported norecursion in subroutines. Early computer architectures supported no concept of a stack, and when they did directly support subroutine calls, the return location was often stored in one fixed location adjacent to the subroutine code (e.g. theIBM 1130) or a specific machine register (IBM 360et seq), which only allows recursion if a stack is maintained by software and the return address is stored on the stack before the call is made and restored after the call returns. Although not specified in FORTRAN 77, many F77 compilers supported recursion as an option, and theBurroughs mainframes, designed with recursion built-in, did so by default. It became a standard in Fortran 90 via the new keyword RECURSIVE.[30]
This program, forHeron's formula, reads data on a tape reel containing three 5-digit integers A, B, and C as input. There are no "type" declarations available: variables whose name starts with I, J, K, L, M, or N are "fixed-point" (i.e. integers), otherwise floating-point. Since integers are to be processed in this example, the names of the variables start with the letter "I". The name of a variable must start with a letter and can continue with both letters and digits, up to a limit of six characters in FORTRAN II. If A, B, and C cannot represent the sides of a triangle in plane geometry, then the program's execution will end with an error code of "STOP 1". Otherwise, an output line will be printed showing the input values for A, B, and C, followed by the computed AREA of the triangle as a floating-point number occupying ten spaces along the line of output and showing 2 digits after the decimal point, the .2 in F10.2 of the FORMAT statement with label 601.
C AREA OF A TRIANGLE WITH A STANDARD SQUARE ROOT FUNCTIONC INPUT - TAPE READER UNIT 5, INTEGER INPUTC OUTPUT - LINE PRINTER UNIT 6, REAL OUTPUTC INPUT ERROR DISPLAY ERROR OUTPUT CODE 1 IN JOB CONTROL LISTINGREADINPUTTAPE5,501,IA,IB,IC 501FORMAT(3I5)C IA, IB, AND IC MAY NOT BE NEGATIVE OR ZEROC FURTHERMORE, THE SUM OF TWO SIDES OF A TRIANGLEC MUST BE GREATER THAN THE THIRD SIDE, SO WE CHECK FOR THAT, TOOIF(IA)777,777,701 701IF(IB)777,777,702 702IF(IC)777,777,703 703IF(IA+IB-IC)777,777,704 704IF(IA+IC-IB)777,777,705 705IF(IB+IC-IA)777,777,799 777STOP1C USING HERON'S FORMULA WE CALCULATE THEC AREA OF THE TRIANGLE 799S=FLOATF(IA+IB+IC)/2.0AREA=SQRTF(S*(S-FLOATF(IA))*(S-FLOATF(IB))*+(S-FLOATF(IC)))WRITEOUTPUTTAPE6,601,IA,IB,IC,AREA 601FORMAT(4HA=,I5,5HB=,I5,5HC=,I5,8HAREA=,F10.2,+13HSQUAREUNITS)STOPEND
IBM also developed aFORTRAN III in 1958 that allowed forinline assembly code among other features; however, this version was never released as a product. Like the 704 FORTRAN and FORTRAN II, FORTRAN III included machine-dependent features that made code written in it unportable from machine to machine, as well as Boolean expression support.[11]: 76 Early versions of FORTRAN provided by other vendors suffered from the same disadvantage.
IBM began development ofFORTRAN IV in 1961 as a result of customer demands. FORTRAN IV removed the machine-dependent features of FORTRAN II (such asREAD INPUT TAPE), while adding new features such as aLOGICAL data type, logicalBoolean expressions, and thelogical IF statement as an alternative to thearithmetic IF statement. Type declarations were added, along with anIMPLICIT statement to override earlier conventions that variables areINTEGER if their name begins withI,J,K,L,M, orN; andREAL otherwise.[31]: pp.70, 71 [32]: p.6–9
FORTRAN IV was eventually released in 1962, first for theIBM 7030 ("Stretch") computer, followed by versions for theIBM 7090,IBM 7094, and later for theIBM 1401 in 1966.[33]
By 1965, FORTRAN IV was supposed to be compliant with thestandard being developed by theAmerican Standards Association X3.4.3 FORTRAN Working Group.[34]
Between 1966 and 1968, IBM offered several FORTRAN IV compilers for itsSystem/360, each named by letters that indicated the minimum amount of memory the compiler needed to run.[35]The letters (F, G, H) matched the codes used with System/360 model numbers to indicate memory size, each letter increment being a factor of two larger:[36]: p. 5
At about this time FORTRAN IV had started to become an important educational tool and implementations such as the University of Waterloo's WATFOR andWATFIV were created to simplify the complex compile and link processes of earlier compilers.
In the FORTRAN IV programming environment of the era, except for that used on Control Data Corporation (CDC) systems, only one instruction was placed per line. The CDC version allowed for multiple instructions per line if separated by a$ (dollar) character. The FORTRANsheet was divided into four fields, as described above.
Two compilers of the time, IBM "G" and UNIVAC, allowed comments to be written on the same line as instructions, separated by a special character: "master space": V (perforations 7 and 8) for UNIVAC and perforations 12/11/0/7/8/9 (hexadecimal FF) for IBM. These comments were not to be inserted in the middle of continuation cards.[32][37]
Perhaps the most significant development in the early history of FORTRAN was the decision by theAmerican Standards Association (nowAmerican National Standards Institute (ANSI)) to form a committee sponsored by theBusiness Equipment Manufacturers Association (BEMA) to develop anAmerican Standard Fortran. The resulting two standards, approved in March 1966, defined two languages,FORTRAN (based on FORTRAN IV, which had served as a de facto standard), andBasic FORTRAN (based on FORTRAN II, but stripped of its machine-dependent features). The FORTRAN defined by the first standard, officially denoted X3.9-1966, became known asFORTRAN 66 (although many continued to term it FORTRAN IV, the language on which the standard was largely based). FORTRAN 66 effectively became the first industry-standard version of FORTRAN. FORTRAN 66 included:
Main program,SUBROUTINE,FUNCTION, andBLOCK DATA program units
GO TO, computedGO TO, assignedGO TO, andASSIGN statements
LogicalIF and arithmetic (three-way)IF statements
DO loop statement
READ,WRITE,BACKSPACE,REWIND, andENDFILE statements for sequential I/O
FORMAT statement and assigned format
CALL,RETURN,PAUSE, andSTOP statements
Hollerith constants inDATA andFORMAT statements, and as arguments to procedures
Identifiers of up to six characters in length
Comment lines
END line
The above Fortran II version of the Heron program needs several modifications to compile as a Fortran 66 program. Modifications include using the more machine independent versions of theREAD andWRITE statements, and removal of the unneededFLOATF type conversion functions. Though not required, the arithmeticIF statements can be re-written to use logicalIF statements and expressions in a more structured fashion.
C AREA OF A TRIANGLE WITH A STANDARD SQUARE ROOT FUNCTIONC INPUT - TAPE READER UNIT 5, INTEGER INPUTC OUTPUT - LINE PRINTER UNIT 6, REAL OUTPUTC INPUT ERROR DISPLAY ERROR OUTPUT CODE 1 IN JOB CONTROL LISTINGREAD(5,501)IA,IB,IC 501FORMAT(3I5)CC IA, IB, AND IC MAY NOT BE NEGATIVE OR ZEROC FURTHERMORE, THE SUM OF TWO SIDES OF A TRIANGLEC MUST BE GREATER THAN THE THIRD SIDE, SO WE CHECK FOR THAT, TOOIF(IA.GT.0.AND.IB.GT.0.AND.IC.GT.0)GOTO10WRITE(6,602) 602FORMAT(42HIA,IB,ANDICMUSTBEGREATERTHANZERO.)STOP1 10CONTINUECIF(IA+IB-IC.GT.0+.AND.IA+IC-IB.GT.0+.AND.IB+IC-IA.GT.0)GOTO20WRITE(6,603) 603FORMAT(50HSUMOFTWOSIDESMUSTBEGREATERTHANTHIRDSIDE.)STOP1 20CONTINUECC USING HERON'S FORMULA WE CALCULATE THEC AREA OF THE TRIANGLES=(IA+IB+IC)/2.0AREA=SQRT(S*(S-IA)*(S-IB)*(S-IC))WRITE(6,601)IA,IB,IC,AREA 601FORMAT(4HA=,I5,5HB=,I5,5HC=,I5,8HAREA=,F10.2,+13HSQUAREUNITS)STOPEND
After the release of the FORTRAN 66 standard, compiler vendors introduced several extensions toStandard Fortran, prompting ANSI committee X3J3 in 1969 to begin work on revising the 1966 standard, under sponsorship ofCBEMA, the Computer Business Equipment Manufacturers Association (formerly BEMA). Final drafts of this revised standard circulated in 1977, leading to formal approval of the new FORTRAN standard in April 1978. The new standard, calledFORTRAN 77 and officially denoted X3.9-1978, added a number of significant features to address many of the shortcomings of FORTRAN 66:
BlockIF andEND IF statements, with optionalELSE IF andELSE clauses, to provide improved language support forstructured programming
DO loop extensions, including parameter expressions, negative increments, and zero trip counts
OPEN,CLOSE, andINQUIRE statements for improved I/O capability
Direct-access file I/O
CHARACTER data type, replacing Hollerith strings with vastly expanded facilities for character input and output and processing of character-based data
PARAMETER statement for specifying constants
SAVE statement for persistent local variables
Generic names for intrinsic functions (e.g.SQRT also accepts arguments of other types, such asCOMPLEX orREAL*16).
A maximum of seven dimensions in arrays, rather than three. Allowed subscript expressions were also generalized.
In this revision of the standard, a number of features were removed or altered in a manner that might invalidate formerly standard-conforming programs.(Removal was the only allowable alternative to X3J3 at that time, since the concept of "deprecation" was not yet available for ANSI standards.)While most of the 24 items in the conflict list (see Appendix A2 of X3.9-1978) addressed loopholes or pathological cases permitted by the prior standard but rarely used, a small number of specific capabilities were deliberately removed, such as:
Reading into an H edit (Hollerith field) descriptor in a FORMAT specification
Overindexing of array bounds by subscripts
DIMENSIONA(10,5)Y=A(11,1)
Transfer of control out of and back into the range of a DO loop (also known as "Extended Range")
A Fortran 77 version of the Heron program requires no modifications to the Fortran 66 version. However this example demonstrates additional cleanup of the I/O statements, including using list-directed I/O, and replacing the Hollerith edit descriptors in theFORMAT statements with quoted strings. It also uses structuredIF andEND IF statements, rather thanGOTO/CONTINUE.
PROGRAMHERONC AREA OF A TRIANGLE WITH A STANDARD SQUARE ROOT FUNCTIONC INPUT - DEFAULT STANDARD INPUT UNIT, INTEGER INPUTC OUTPUT - DEFAULT STANDARD OUTPUT UNIT, REAL OUTPUTC INPUT ERROR DISPLAY ERROR OUTPUT CODE 1 IN JOB CONTROL LISTINGREAD(*,*)IA,IB,ICCC IA, IB, AND IC MAY NOT BE NEGATIVE OR ZEROC FURTHERMORE, THE SUM OF TWO SIDES OF A TRIANGLEC MUST BE GREATER THAN THE THIRD SIDE, SO WE CHECK FOR THAT, TOOIF(IA.LE.0.OR.IB.LE.0.OR.IC.LE.0)THENWRITE(*,*)'IA, IB, and IC must be greater than zero.'STOP1END IFCIF(IA+IB-IC.LE.0+.OR.IA+IC-IB.LE.0+.OR.IB+IC-IA.LE.0)THENWRITE(*,*)'Sum of two sides must be greater than third side.'STOP1END IFCC USING HERON'S FORMULA WE CALCULATE THEC AREA OF THE TRIANGLES=(IA+IB+IC)/2.0AREA=SQRT(S*(S-IA)*(S-IB)*(S-IC))WRITE(*,601)IA,IB,IC,AREA 601FORMAT('A= ',I5,' B= ',I5,' C= ',I5,' AREA= ',F10.2,+' square units')STOPEND
The development of a revised standard to succeed FORTRAN 77 would be repeatedly delayed as the standardization process struggled to keep up with rapid changes in computing and programming practice. In the meantime, as the "Standard FORTRAN" for nearly fifteen years, FORTRAN 77 would become the historically most important dialect.
An important practical extension to FORTRAN 77 was the release of MIL-STD-1753 in 1978.[38] This specification, developed by theU.S. Department of Defense, standardized a number of features implemented by most FORTRAN 77 compilers but not included in the ANSI FORTRAN 77 standard. These features would eventually be incorporated into the Fortran 90 standard.
TheIEEE 1003.9POSIX Standard, released in 1991, provided a simple means for FORTRAN 77 programmers to issue POSIX system calls.[39] Over 100 calls were defined in the document – allowing access to POSIX-compatible process control, signal handling, file system control, device control, procedure pointing, and stream I/O in a portable manner.
The much-delayed successor to FORTRAN 77, informally known asFortran 90 (and prior to that,Fortran 8X), was finally released as ISO/IEC standard 1539:1991 in 1991 and an ANSI Standard in 1992. In addition to changing the official spelling from FORTRAN to Fortran, this major revision added many new features to reflect the significant changes in programming practice that had evolved since the 1978 standard:
Free-form source input removes the need to skip the first six character positions before entering statements. Line continuations are specified by the& character at the end of the line, rather than in column 6 of the next line. Blanks also become significant. Typically files with names ending in.f90 signify free-format source code. The older fixed-form source form is still defined, but considered obsolescent.
Lowercase Fortran keywords
Identifiers up to 31 characters in length (in the previous standard, it was only six characters).
Inline comments
Ability to operate on arrays (or array sections) as a whole, thus greatly simplifying math and engineering computations.
whole, partial and masked array assignment statements and array expressions, such asX(1:N)=R(1:N)*COS(A(1:N))
WHERE statement for selective array assignment
array-valued constants and expressions,
user-defined array-valued functions and array constructors.
Modules, to group relatedprocedures and data together, and make them available to other program units, including the capability to limit the accessibility to only specific parts of the module.
A vastly improved argument-passing mechanism, allowinginterfaces to be checked at compile time
New data type declaration syntax, to specify the data type and other attributes of variables
Dynamic memory allocation by means of theALLOCATABLE attribute and theALLOCATE andDEALLOCATE statements
POINTER attribute, pointer assignment, andNULLIFY statement to facilitate the creation and manipulation of dynamicdata structures
Structured looping constructs, with anEND DO statement for loop termination, andEXIT andCYCLE statements for terminating normalDO loop iterations in an orderly way
Unlike the prior revision, Fortran 90 removed no features.[40] Any standard-conforming FORTRAN 77 program was also standard-conforming under Fortran 90, and either standard should have been usable to define its behavior.
A small set of features were identified as "obsolescent" and were expected to be removed in a future standard. All of the functionalities of these early-version features can be performed by newer Fortran features. Some are kept to simplify porting of old programs but many were deleted in Fortran 95.
Fortran 95, published officially as ISO/IEC 1539-1:1997, was a minor revision, mostly to resolve some outstanding issues from the Fortran 90 standard. Nevertheless, Fortran 95 also added a number of extensions, notably from theHigh Performance Fortran specification:
FORALL and nestedWHERE constructs to aid vectorization
Default initialization of derived type components, including pointer initialization
Expanded the ability to use initialization expressions for data objects
Initialization of pointers toNULL()
Clearly defined thatALLOCATABLE arrays are automatically deallocated when they go out of scope.
A number of intrinsic functions were extended (for example adim argument was added to themaxloc intrinsic).
Several features noted in Fortran 90 to be "obsolescent" were removed from Fortran 95:
DO statements usingREAL andDOUBLE PRECISION index variables
Branching to anEND IF statement from outside its block
PAUSE statement
ASSIGN and assignedGO TO statement, and assigned format specifiers
H Hollerith edit descriptor.
An important supplement to Fortran 95 was theISO technical reportTR-15581: Enhanced Data Type Facilities, informally known as theAllocatable TR. This specification defined enhanced use ofALLOCATABLE arrays, prior to the availability of fully Fortran 2003-compliant Fortran compilers. Such uses includeALLOCATABLE arrays as derived type components, in procedure dummy argument lists, and as function return values. (ALLOCATABLE arrays are preferable toPOINTER-based arrays becauseALLOCATABLE arrays are guaranteed by Fortran 95 to be deallocated automatically when they go out of scope, eliminating the possibility ofmemory leakage. In addition, elements of allocatable arrays are contiguous, andaliasing is not an issue for optimization of array references, allowing compilers to generate faster code than in the case of pointers.[41])
In addition to the mandatory "Base language" (defined in ISO/IEC 1539-1 : 1997), the Fortran 95 language also included two optional modules:
Varying length character strings (ISO/IEC 1539-2 : 2000)
Conditional compilation (ISO/IEC 1539-3 : 1998)
which, together, compose the multi-part International Standard (ISO/IEC 1539).
According to the standards developers, "the optional parts describe self-contained features which have been requested by a substantial body of users and/or implementors, but which are not deemed to be of sufficient generality for them to be required in all standard-conforming Fortran compilers." Nevertheless, if a standard-conforming Fortran does provide such options, then they "must be provided in accordance with the description of those facilities in the appropriate Part of the Standard".
The language defined by the twenty-first century standards, in particular because of its incorporation ofobject-oriented programming support and subsequentlyCoarray Fortran, is often referred to as 'Modern Fortran', and the term is increasingly used in the literature.[42]
Fortran 2003, officially published as ISO/IEC 1539-1:2004, was a major revision introducing many new features.[43] A comprehensive summary of the new features of Fortran 2003 is available at the Fortran Working Group (ISO/IEC JTC1/SC22/WG5) official Web site.[44]
From that article, the major enhancements for this revision include:
Derived type enhancements: parameterized derived types, improved control of accessibility, improved structure constructors, and finalizers
Data manipulation enhancements: allocatable components (incorporating TR 15581), deferred type parameters,VOLATILE attribute, explicit type specification in array constructors and allocate statements, pointer enhancements, extended initialization expressions, and enhanced intrinsic procedures
Input/output enhancements:asynchronous transfer, stream access, user specified transfer operations for derived types, user specified control of rounding during format conversions, named constants for preconnected units, theFLUSH statement, regularization of keywords, and access to error messages
Support for international usage: access toISO 10646 4-byte characters and choice of decimal or comma in numeric formatted input/output
Enhanced integration with the host operating system: access tocommand-line arguments,environment variables, and processor error messages
An important supplement to Fortran 2003 was theISO technical reportTR-19767: Enhanced module facilities in Fortran. This report providedsub-modules, which make Fortran modules more similar toModula-2 modules. They are similar toAda private child sub-units. This allows the specification and implementation of a module to be expressed in separate program units, which improves packaging of large libraries, allows preservation of trade secrets while publishing definitive interfaces, and prevents compilation cascades.
ISO/IEC 1539-1:2010, informally known as Fortran 2008, was approved in September 2010.[45][46] As with Fortran 95, this is a minor upgrade, incorporating clarifications and corrections to Fortran 2003, as well as introducing some new capabilities. The new capabilities include:
The Final Draft international Standard (FDIS) is available as document N1830.[47]
A supplement to Fortran 2008 is theInternational Organization for Standardization (ISO) Technical Specification (TS) 29113 onFurther Interoperability of Fortran with C,[48][49] which has been submitted to ISO in May 2012 for approval. The specification adds support for accessing the array descriptor from C and allows ignoring the type and rank of arguments.
The Fortran 2018 revision of the language was earlier referred to as Fortran 2015.[50] It was a significant revision and was released on November 28, 2018.[51]
Fortran 2018 incorporates two previously published Technical Specifications:
ISO/IEC TS 29113:2012 Further Interoperability with C[52]
ISO/IEC TS 18508:2015 Additional Parallel Features in Fortran[53]
Additional changes and new features include support for ISO/IEC/IEEE 60559:2011 (the version of theIEEE floating-point standard before the latest minor revision IEEE 754–2019), hexadecimal input/output, IMPLICIT NONE enhancements and other changes.[54][55][56][57]
Fortran 2018 deleted the arithmetic IF statement. It also deleted non-block DO constructs - loops which do not end with an END DO or CONTINUE statement. These had been an obsolescent part of the language since Fortran 90.
New obsolescences are: COMMON and EQUIVALENCE statements and the BLOCK DATA program unit, labelled DO loops, specific names for intrinsic functions, and the FORALL statement and construct.
Fortran 2023 (ISO/IEC 1539-1:2023) was published in November 2023, and can be purchased from the ISO.[58]Fortran 2023 is a minor extension of Fortran 2018 that focuses on correcting errors and omissionsin Fortran 2018. It also adds several small features, includingconditional expressions and arguments, simple procedures, and anenumerated type capability. Degree- and half revolution based trig functions were also added. Degree-based trig functions were previously a very common vendor extension.
A full description of the Fortran language features brought by Fortran 95 is covered in the related article,Fortran 95 language features. The language versions defined by later standards are often referred to collectively as 'Modern Fortran' and are described in the literature.
General relativistic magnetohydrodynamic Fortran simulation of black hole accretion using the BHAC code with cartesian adaptive meshFlow around a cylinder computed in Fortran with OpenCLVelocity and sea surface temperature in the oceans, computed with the NEMO Fortran code
Although a 1968 journal article by the authors ofBASIC already described FORTRAN as "old-fashioned",[59] programs have been written in Fortran for many decades and there is a vast body of Fortran software in daily use throughout the scientific and engineering communities.[60]Jay Pasachoff wrote in 1984 that "physics and astronomy students simply have to learn FORTRAN. So much exists in FORTRAN that it seems unlikely that scientists will change toPascal,Modula-2, or whatever."[61] In 1993,Cecil E. Leith called FORTRAN the "mother tongue of scientific computing", adding that its replacement by any other possible language "may remain a forlorn hope".[62]
Apart from this, more modern codes in computational science generally use large program libraries, such asMETIS for graph partitioning,PETSc orTrilinos for linear algebra capabilities,deal.II orFEniCS for mesh and finite element support, and other generic libraries. Since the early 2000s, many of the widely used support libraries have also been implemented inC and more recently, inC++. On the other hand, high-level languages such as theWolfram Language,MATLAB,Python, andR have become popular in particular areas of computational science. Consequently, a growing fraction of scientific programs are also written in such higher-level scripting languages. For this reason,facilities for inter-operation with C were added to Fortran 2003 and enhanced by the ISO/IEC technical specification 29113, which was incorporated into Fortran 2018 to allow more flexible interoperation with other programming languages.
Portability was a problem in the early days because there was no agreed upon standard—not even IBM's reference manual—and computer companies vied to differentiate their offerings from others by providing incompatible features. Standards have improved portability. The 1966 standard provided a referencesyntax and semantics, but vendors continued to provide incompatible extensions. Although careful programmers were coming to realize that use of incompatible extensions caused expensive portability problems, and were therefore using programs such asThe PFORT Verifier,[65][66] it was not until after the 1977 standard, when the National Bureau of Standards (nowNIST) publishedFIPS PUB 69, that processors purchased by the U.S. Government were required to diagnose extensions of the standard. Rather than offer two processors, essentially every compiler eventually had at least an option to diagnose extensions.[67][68]
Incompatible extensions were not the only portability problem. For numerical calculations, it is important to take account of the characteristics of the arithmetic. This was addressed by Fox et al. in the context of the 1966 standard by thePORT library.[66] The ideas therein became widely used, and were eventually incorporated into the 1990 standard by way of intrinsic inquiry functions. The widespread (now almost universal) adoption of theIEEE 754 standard for binary floating-point arithmetic has essentially removed this problem.
Access to the computing environment (e.g., the program's command line, environment variables, textual explanation of error conditions) remained a problem until it was addressed by the 2003 standard.
Large collections of library software that could be described as being loosely related to engineering and scientific calculations, such as graphics libraries, have been written in C, and therefore access to them presented a portability problem. This has been addressed by incorporation of C interoperability into the 2003 standard.
It is now possible (and relatively easy) to write an entirely portable program in Fortran, even without recourse to apreprocessor.
Until the Fortran 66 standard was developed, each compiler supported its own variant of Fortran. Some were more divergent from the mainstream than others.
The first Fortran compiler set a high standard of efficiency for compiled code. This goal made it difficult to create a compiler so it was usually done by the computer manufacturers to support hardware sales. This left an important niche: compilers that were fast and provided good diagnostics for the programmer (often a student). Examples include Watfor, Watfiv, PUFFT, and on a smaller scale, FORGO, Wits Fortran, and Kingston Fortran 2.
Fortran 5 was marketed byData General Corp from the early 1970s to the early 1980s, for theNova,Eclipse, andMV line of computers. It had an optimizing compiler that was quite good for minicomputers of its time. The language most closely resembles FORTRAN 66.
Univac also offered a compiler for the 1100 series known as FORTRAN V. A spinoff of Univac Fortran V was Athena FORTRAN.
Specific variants produced by the vendors of high-performance scientific computers (e.g.,Burroughs,Control Data Corporation (CDC),Cray,Honeywell,IBM,Texas Instruments, andUNIVAC) added extensions to Fortran to take advantage of special hardware features such asinstruction cache, CPUpipelines, and vector arrays. For example, one of IBM's FORTRAN compilers (H Extended IUP) had a level of optimization which reordered themachine codeinstructions to keep multiple internal arithmetic units busy simultaneously. Another example isCFD, a special variant of FORTRAN designed specifically for theILLIAC IV supercomputer, running atNASA'sAmes Research Center.IBM Research Labs also developed an extended FORTRAN-based language calledVECTRAN for processing vectors and matrices.
Object-Oriented Fortran was an object-oriented extension of Fortran, in which data items can be grouped into objects, which can be instantiated and executed in parallel. It was available forSolaris,IRIX,NeXTSTEP,iPSC, and nCUBE, but is no longer supported.[70][71]
Such machine-specific extensions have either disappeared over time or have had elements incorporated into the main standards. The major remaining extension isOpenMP, which is a cross-platform extension for shared memory programming. One new extension, Coarray Fortran, is intended to support parallel programming.
FOR TRANSIT was the name of a reduced version of the IBM 704 FORTRAN language, which was implemented for the IBM 650, using a translator program developed at Carnegie in the late 1950s.[72] The following comment appears in the IBM Reference Manual (FOR TRANSIT Automatic Coding System C28-4038, Copyright 1957, 1959 by IBM):
The FORTRAN system was designed for a more complex machine than the 650, and consequently some of the 32 statements found in the FORTRAN Programmer's Reference Manual are not acceptable to the FOR TRANSIT system. In addition, certain restrictions to the FORTRAN language have been added. However, none of these restrictions make a source program written for FOR TRANSIT incompatible with the FORTRAN system for the 704.
The permissible statements were:
Arithmetic assignment statements, e.g.,a = b
GO to n
GO TO (n1, n2, ..., nm), i
IF (a) n1, n2, n3
PAUSE
STOP
DO n i = m1, m2
CONTINUE
END
READ n, list
PUNCH n, list
DIMENSION V, V, V, ...
EQUIVALENCE (a,b,c), (d,c), ...
Up to ten subroutines could be used in one program.
FOR TRANSIT statements were limited to columns 7 through 56, only. Punched cards were used for input and output on the IBM 650. Three passes were required to translate source code to the "IT" language, then to compile the IT statements into SOAP assembly language, and finally to produce the object program, which could then be loaded into the machine to run the program (using punched cards for data input, and outputting results onto punched cards).
Two versions existed for the 650s with a 2000 word memory drum: FOR TRANSIT I (S) and FOR TRANSIT II, the latter for machines equipped with indexing registers and automatic floating-point decimal (bi-quinary) arithmetic. Appendix A of the manual included wiring diagrams for theIBM 533 card reader/punchcontrol panel.
Prior to FORTRAN 77, manypreprocessors were commonly used to provide a friendlier language, with the advantage that the preprocessed code could be compiled on any machine with a standard FORTRAN compiler.[73] These preprocessors would typically supportstructured programming, variable names longer than six characters, additional data types,conditional compilation, and evenmacro capabilities. Popular preprocessors includedEFL,FLECS,iftran,MORTRAN,SFtran,S-Fortran,Ratfor, andRatfiv. EFL, Ratfor and Ratfiv, for example, implementedC-like languages, outputting preprocessed code in standard FORTRAN 66. ThePFORT preprocessor was often used to verify that code conformed to a portable subset of the language. Despite advances in the Fortran language, preprocessors continue to be used for conditional compilation and macro substitution.
One of the earliest versions of FORTRAN, introduced in the '60s, was popularly used in colleges and universities. Developed, supported, and distributed by theUniversity of Waterloo,WATFOR was based largely on FORTRAN IV. A student using WATFOR could submit their batch FORTRAN job and, if there were no syntax errors, the program would move straight to execution. This simplification allowed students to concentrate on their program's syntax and semantics, or execution logic flow, rather than dealing with submissionJob Control Language (JCL), the compile/link-edit/execution successive process(es), or other complexities of the mainframe/minicomputer environment. A down side to this simplified environment was that WATFOR was not a good choice for programmers needing the expanded abilities of their host processor(s), e.g., WATFOR typically had very limited access to I/O devices. WATFOR was succeeded byWATFIV and its later versions.
The Fortran-95 Standard includes an optionalPart 3 which defines an optionalconditional compilation capability. This capability is often referred to as "CoCo".
Many Fortran compilers have integrated subsets of theC preprocessor into their systems.
SIMSCRIPT is an application specific Fortran preprocessor for modeling and simulating large discrete systems.
TheF programming language was designed to be a clean subset of Fortran 95 that attempted to remove the redundant, unstructured, and deprecated features of Fortran, such as theEQUIVALENCE statement. F retains the array features added in Fortran 90, and removes control statements that were made obsolete by structured programming constructs added to both FORTRAN 77 and Fortran 90. F is described by its creators as "a compiled, structured, array programming language especially well suited to education and scientific computing".[74] Essential Lahey Fortran 90 (ELF90) was a similar subset.
Lahey and Fujitsu teamed up to create Fortran for the Microsoft.NET Framework.[75] Silverfrost FTN95 is also capable of creating .NET code.[76]
The following program illustrates dynamic memory allocation and array-based operations, two features introduced with Fortran 90. Particularly noteworthy is the absence ofDO loops andIF/THEN statements in manipulating the array; mathematical operations are applied to the array as a whole. Also apparent is the use of descriptive variable names and general code formatting that conform with contemporary programming style. This example computes an average over data entered interactively.
programaverage! Read in some numbers and take the average! As written, if there are no data points, an average of zero is returned! While this may not be desired behavior, it keeps this example simpleimplicit nonereal,allocatable::points(:)integer::number_of_pointsreal::average_points,positive_average,negative_averageaverage_points=0.positive_average=0.negative_average=0.write(*,*)"Input number of points to average:"read(*,*)number_of_pointsallocate(points(number_of_points))write(*,*)"Enter the points to average:"read(*,*)points! Take the average by summing points and dividing by number_of_pointsif(number_of_points>0)average_points=sum(points)/number_of_points! Now form average over positive and negative points onlyif(count(points>0.)>0)positive_average=sum(points,points>0.)/count(points>0.)if(count(points<0.)>0)negative_average=sum(points,points<0.)/count(points<0.)! Print result to terminal stdout unit 6write(*,'(a,g12.4)')'Average = ',average_pointswrite(*,'(a,g12.4)')'Average of positive points = ',positive_averagewrite(*,'(a,g12.4)')'Average of negative points = ',negative_averagedeallocate(points)! free memoryend programaverage
During the same FORTRAN standards committee meeting at which the name "FORTRAN 77" was chosen, a satirical technical proposal was incorporated into the official distribution bearing the title "Letter OConsidered Harmful". This proposal purported to address the confusion that sometimes arises between the letter "O" and the numeral zero, by eliminating the letter from allowable variable names. However, the method proposed was to eliminate the letter from the character set entirely (thereby retaining 48 as the number of lexical characters, which the colon had increased to 49). This was considered beneficial in that it would promote structured programming, by making it impossible to use the notoriousGO TO statement as before. (TroublesomeFORMAT statements would also be eliminated.) It was noted that this "might invalidate some existing programs" but that most of these "probably were non-conforming, anyway".[77][unreliable source?][78]
When X3J3 debated whether the minimum trip count for a DO loop should be zero or one in Fortran 77, Loren Meissner suggested a minimum trip count of two—reasoning(tongue-in-cheek) that if it were less than two, then there would be no reason for a loop.
When assumed-length arrays were being added, there was a dispute as to the appropriate character to separate upper and lower bounds. In a comment examining these arguments, Walt Brainerd penned an article entitled "Astronomy vs. Gastroenterology" because some proponents had suggested using the star or asterisk ("*"), while others favored the colon (":").[citation needed]
Variable names beginning with the letters I–N have a default type of integer, while variables starting with any other letters defaulted to real, although programmers could override the defaults with an explicit declaration.[79] This led to the joke: "In FORTRAN, GOD is REAL (unless declared INTEGER)."
^Report of a Visit to Discuss Common Programming Languages in Czechoslowakia and Poland, 1963, John A. Gosden (Editor), Roger E. Gay, John L. Jones, Jack N. Merner, Christopher J. Shaw
^Wilson, Leslie B. (2001).Comparative Programming Languages, Third Edition. Addison-Wesley. p. 16.ISBN0-201-71012-9.The manual for Fortran I was released in 1956, but it was 1958 before successful compilers were running programs correctly.
^Wilson, Leslie B. (2001).Comparative Programming Languages, Third Edition. Addison-Wesley. p. 18.ISBN0-201-71012-9.Another problem was that there was no standard for Fortran and so slightly different versions ... would likely fail when used with a different compiler.
^The "Fortran character set" defined by the FORTRAN 77 standard was the minimal character set that standard-compliant compilers were required to support; in practice, many FORTRAN 77 compilers supported the fullASCII character set.
^Padua, David (January–February 2000)."The Fortran I Compiler"(PDF).Computing in Science & Engineering.2 (1):70–75.Bibcode:2000CSE.....2a..70P.doi:10.1109/5992.814661. Archived fromthe original(PDF) on June 17, 2020.The Fortran I compiler was the first major project in code optimization. It tackled problems of crucial importance whose general solution was an important research focus in compiler technology for several decades. Many classical techniques for compiler analysis and optimization can trace their origins and inspiration to the Fortran I compiler.
^Armstead, Betty Jo (January 21, 2015)."My Years at NASA"(PDF).Denver Museum of Nature & Science. Archived fromthe original(PDF) on December 24, 2019. RetrievedJune 15, 2019.
^Gaffney, P W; Wooten, J W (May 1, 1980). Methods to ensure the standardization of FORTRAN software (Report). Oak Ridge National Laboratory.OSTI5361454.PFORT ... Library ...
^abP. A. Fox (1977). "Port — A portable mathematical subroutine library".A portable mathematical subroutine library. Lecture Notes in Computer Science. Vol. 57. pp. 165–177.doi:10.1007/3-540-08446-0_42.ISBN978-3-540-08446-4.PORT ... written in (PFORT) .. ANS Fortran
^Whitten, Douglas E.; Demaine, Paul A. D. (1975). "A machine and configuration independent Fortran: Portable Fortran {PFortran}".IEEE Transactions on Software Engineering.SE-1 (1). Institute of Electrical and Electronics Engineers (IEEE):111–124.doi:10.1109/tse.1975.6312825.ISSN0098-5589.S2CID16485156.
^Healy, MJR (1968)."Towards FORTRAN VI".Advanced scientific Fortran by CDC. CDC. pp. 169–172. Archived fromthe original on July 5, 2009. RetrievedApril 10, 2009.
^"The NeXT Fortran".Journal of Object-oriented Programming.2 (4). SIGS Publications: 88. April 1989 – via Google Books.
^"Upgrades".InfoWorld.13 (25). IDG Publications: 19. June 24, 1991 – via Google Books.
ANSI x3.9-1966.USA Standard FORTRAN(PDF). American National Standards Institute. Archived fromthe original(PDF) on May 15, 2011. RetrievedMay 5, 2010. Informally known as FORTRAN 66.
ECMA Standard on FORTRAN(PDF). European Computer Manufacturers Association. April 1965.Archived(PDF) from the original on May 10, 2008. RetrievedNovember 17, 2014.
Adams, Jeanne C.; Brainerd, Walter S.; Hendrickson, Richard A.; Maine, Richard E.; Martin, Jeanne T.; Smith, Brian T. (2009).The Fortran 2003 Handbook (1st ed.).Springer.ISBN978-1-84628-378-9.
Akin, J. E. (2003).Object-oriented programming via Fortran 90/95. Cambridge, New York: Cambridge University Press.ISBN978-0-521-52408-7.OCLC49906306.
Arjen, Markus (2012), "Modern Fortran in Practice", Cambridge Univ. Press, ISBN 978-1-13908479-6.
Curcic, Milan (2020).Modern Fortran: building efficient parallel applications. Shelter Island, NY: Manning Publications Company.ISBN978-1-61729-528-7.OCLC1256806439.
Ellis, T. M. R.; Phillips, Ivor R.; Lahey, Thomas M. (1994).Fortran 90 Programming (1st ed.). Addison Wesley.ISBN978-0-201-54446-6.
Kerrigan, J. F. (1993).Migrating to Fortran 90 (1st ed.). O'Reilly & Associates, Inc.ISBN1-56592-049-X.
Kupferschmid, Michael (2002).Classical Fortran: Programming for Engineering and Scientific Applications. Marcel Dekker (CRC Press).ISBN978-0-8247-0802-3. (Supplemental materials)
Lorenzo, Mark Jones (2019).Abstracting Away the Machine: The History of the FORTRAN Programming Language (FORmula TRANslation). Independently published.ISBN978-1082395949.
Loukides, Mike (1990).Unix for FORTRAN Programmers. Sebastopol, CA: O'Reilly & Associates, Inc.ISBN0-937175-51-X.
Metcalf, Michael; Reid, John; Cohen, Malcolm; Bader, Reinhold (2024).Modern Fortran Explained: Incorporating Fortran 2023 (6th ed.). Oxford University Press.ISBN9780198876595.
Nyhoff, Larry; Sanford Leestma (1995).FORTRAN 77 for Engineers and Scientists with an Introduction to Fortran 90 (4th ed.).Prentice Hall.ISBN978-0-13-363003-9.
Allen, F.E. (September 1981). "A History of Language Processor Technology in IBM".IBM Journal of Research and Development.25 (5):535–548.doi:10.1147/rd.255.0535.S2CID14149353.
Roberts, Mark L.; Griffiths, Peter D. (1985). "Design Considerations for IBM Personal Computer Professional FORTRAN, an Optimizing Compiler".IBM Systems Journal.24 (1):49–60.doi:10.1147/sj.241.0049.