|
|
|
tf1 and2 tf2
outputs true if both boolean inputs are true, otherwise false.
Note: This is an infix operator with the same functionality as and.
Examples:
false and2 false ;false ;-) false and2 true ;false ;-) true and2 false ;false ;-) true and2 true ;true ;-) |
|
|
|