XOR operator

Synopsis
This operator performs a logical XOR operation.
Variations
Bool XOR Bool2
Performs a logical XOR 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 False.

True XOR True
2.

The following example returns True.

True XOR False