Updated OR.md (markdown)
commited
commit
1f678bea073b58e33419e3374f9126f32c479c45
... | ... | @@ -2,15 +2,6 @@ A logical OR operator. |
2 | 2 | |
3 | 3 | [[/uploads/Or.png]] |
4 | 4 | |
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 | 5 | ## Notes |
15 | 6 | * 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 | 7 |