Fixed source form

IBM extension begins A fixed source form line is a sequence of 1 to 132 characters. The default line size is 72 characters. This is also the Fortran standard line size. You can change the default using the -qfixed=right_margin compiler option. In XL Fortran there is no limit to the number of continuation lines for a statement, but the statement cannot be longer than 34 000 characters. Fortran 2003 limits the number of continuation lines to 255, while Fortran 95 limits the number of continuation lines to 19.

In fixed source form, columns beyond the right margin are not part of the line and you can use these columns for identification, sequencing, or any other purpose. IBM extension ends

Except within a character context, white space is insignificant. You can embed white space between and within lexical tokens, without affecting the way the compiler treats them.

IBM extension begins Tab formatting means that there is a tab character in columns 1 through 6 of an initial line in XL Fortran, which directs the compiler to interpret the next character as being in column 7. IBM extension ends

Requirements for lines and for items on those lines are:

Fortran 2008 beginsA semicolon separates statements on a single source line, except when appearing in a character context, in a comment, or in columns 1 through 6.Fortran 2008 ends Two or more semicolon separators that are on the same line and are themselves separated by only white space or other semicolons are considered to be a single separator. A separator that is the last character on a line or before an inline comment is ignored. Statements following a semicolon on the same line cannot be labeled. Additional statements cannot follow a program unit END statement on the same line.