The AND -option in the man
The -and operator is the logical AND
operator. As it is
implied by the juxtaposition of two expressions it
does
not have to be specified. The expression evaluates
to
true if both expressions are true. The second
expression
is not evaluated if the first expression is false.
This part of the manual is rather cryptic for me. However, let's analyse it.
1st sentence: like AND operator in Math. Two two 1s only!
2nd sentente: This suggests me that you do not need to use the command, as you can see in Dave's answer. Great! - - It seems to juxpose the 1st expression with -AND to and Expression without -AND. Please, clarify this Greek to me.
3rd sentence: repeation: It says the same in the 1st sentence by the word "logical".
4th sentence: repeation: It says that 01 implies false
The same in English:
Let p and q be two expressions with the following truth valuas
p q pANDq
1 1 1
1 0 0
0 1 0
0 0 0
where 1 implies true, while 0 false.
Note the manuals contain often superfluous description and sometimes mistakes.