.LE. (<=) operator
Standard: (F77) F90 F95 F2003
  Example Program
<Syntax>
expression .LE. 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 less 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, .GE. (>=) operator, .GT. (>) operator, .LT. (<) operator, .NE. (/=) operator, .NEQV. operator, .NOT. operator, Numeric operators, Operator precedence, .OR. operator