.GE. (>=) operator

Standard: (F77) F90 F95 F2003 F2008 F2018 Example program


<Syntax>

expression .GE. expression
expression >= expression

Each expression must be of type Integer, Real or Character.

<Semantics>

Compares two expressions, returning .TRUE. if and only if the first expression is greater than or equal to the second. The expressions must be both either Integer or Real, or both Character. If they are of type Character, the native collating sequence is used (this might differ from ASCII).

<Related>

.AND. operator, Concatenation (//) operator, .EQ. (==) operator, .EQV. operator, .GT. (>) operator, .LE. (<=) operator, .LT. (<) operator, .NE. (/=) operator, .NEQV. operator, .NOT. operator, Numeric operators, Operator precedence, .OR. operator