Next: PACK, Previous: NULL, Up: Intrinsic Procedures
OR — Bitwise logical OROR.
     This intrinsic routine is provided for backwards compatibility with
GNU Fortran 77.  For integer arguments, programmers should consider
the use of the IOR intrinsic defined by the Fortran standard.
     
RESULT = OR(X, Y)
     | X | The type shall be either INTEGER(*)orLOGICAL. | 
| Y | The type shall be either INTEGER(*)orLOGICAL. | 
INTEGER(*) or LOGICAL
after cross-promotion of the arguments.
               PROGRAM test_or
            LOGICAL :: T = .TRUE., F = .FALSE.
            INTEGER :: a, b
            DATA a / Z'F' /, b / Z'3' /
          
            WRITE (*,*) OR(T, T), OR(T, F), OR(F, T), OR(F, F)
            WRITE (*,*) OR(a, b)
          END PROGRAM