Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- The Guide To Clipper - <b>.or. logical or -- binary (logical)</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
.OR.           Logical OR  -- binary                      (Logical)


Syntax:        <condition1> .OR. <condition2>

Type:          Logical

Operands:      <condition1> and <condition2> are expressions
               that evaluate to logical type.

Description:   The .OR. operator is a binary logical operator that
               executes a logical OR operation using the following
               rules:

               . Returns true (.T.) if either <condition1> or
                 <condition2> evaluate to true (.T.)

               . Returns false (.F.) if both <condition1> and
                 <condition2> evaluate to false (.F.)


----------------------------------- Examples -------------------------------

   ? .T. .OR. .T.                       && Result: .T.
   ? .T. .OR. .F.                       && Result: .T
   ? .F. .OR. .T.                       && Result: .T.
   ? .F. .OR. .F.                       && Result: .F.


See Also: .AND. .NOT. Expr_error()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson