OR operator

Synopsis
This operator performs a logical OR operation.
Variations
Bool OR Bool2
Performs a logical OR operation.
Parameters
Bool

Specifies the first value.

Supported types: Boolean.
Bool2

Specifies the second value.

Supported types: Boolean.
Returns
Returned types: Boolean.
Examples
1.

The following example returns True.

True OR False
2.

The following example returns True.

True OR True
3.

The following example returns False.

False OR False