Updated OR.md (markdown)
commited
commit
65ed29c1ae556778a9fb3f4f3cff3003cf13680e
... | ... | @@ -2,6 +2,14 @@ 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 | Outputs: |
|
10 | ||
11 | * Boolean: Combines Tru1 & Tru2, returns True if either input is True. |
|
12 | ||
5 | 13 | ## Notes |
6 | 14 | * 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. |
7 | 15 |