Updated AND.md (markdown)
commited
commit
b20de47d23ab8ca1052cd31d6cbfe9d3461b548c
... | ... | @@ -2,6 +2,15 @@ A logical AND operator. |
2 | 2 | |
3 | 3 | [[/uploads/And.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 both inputs are True. |
|
13 | ||
5 | 14 | ## Notes |
6 | 15 | * This script block can be combined with [[If]] block to check if both Tru1 and Tru2 inputs are True. You can also use the logical [[OR]] operator to check if either Inputs is True. |
7 | 16 |