Simplified
commited
commit
32e8a37f6acff8dceb4f972ea13398cd685d771e
... | ... | @@ -1,23 +1,5 @@ |
1 | A logical OR operator. |
|
2 | ||
3 | 1 | [[/uploads/Or.png]] |
4 | 2 | |
5 | Inputs: |
|
6 | ||
7 | * Tru1: The first boolean value to check. |
|
8 | * Tru2: The second boolean value to check. |
|
9 | ||
10 | Outputs: |
|
11 | ||
12 | * Boolean: Combines Tru1 & Tru2, returns True if either input is True. |
|
13 | ||
14 | ## Notes |
|
15 | * This script block can be combined with [[If]] block to check if either Tru1 and Tru2 inputs are True. You can also use the logical [[AND]] operator to check if both Inputs are True. |
|
16 | ||
17 | ## Examples |
|
18 | * The top one returns True because both inputs are True. |
|
19 | * The middle one returns True because one of the inputs is True. |
|
20 | * The last one returns False because both of the inputs are False. |
|
21 | ||
22 | [[uploads/or_ex01.jpg]] |
|
3 | If at least one of the inputs is True, then it outputs True. Otherwise, it outputs False. |
|
23 | 4 | |
5 | [[/uploads/Screenshot_2022-02-14-07-25-33-16_6c69499164362a0dbe2f1dfe7c62199a.jpg]] |
|
... | ... | \ No newline at end of file |